PHP数组之数据结构 2020/12/3 | 博客 | 评论(0) | 阅读(37) <?php //数组的数据结构之栈存储 $zhan=array("one","two","three","four"); array_push($zhan,"five","six");//push函数将元素压入数组的栈底(数组尾部),可以一次压入多个数据 echo "<br>"; print_r($zhan);  ...