The examples in this article describe the usage of PHP linear tables being pushed into and popped out of the stack. Share it with everyone for your reference. The details are as follows:
<?php $stack = array("Simon", "Elaine"); //定义数组 array_push($stack, "Helen", "Peter"); //入栈 print_r($stack); ?>
<?php $stack = array("Simon", "Elaine"); //定义数组 array_unshift ($stack, "Helen", "Peter"); //入栈 print_r($stack); ?>
<?php $stack = array("Simon", "Elaine", "Helen", "Peter"); echo array_pop($stack)."/n"; //出栈 print_r($stack); ?>
<?php $stack = array("Simon", "Elaine", "Helen", "Peter"); echo array_shift($stack)."/n"; //出栈 print_r($stack); ?>
I hope this article will be helpful to everyone’s PHP programming design.