//栈数据结构 先进后出
$stack=new SplStack();
$stack->push("----\ndata1\n");
$stack->push("data2\n&
2019-11-12