Home  >  Article  >  Backend Development  >  php线性表的入栈与出栈实例分析_php技巧

php线性表的入栈与出栈实例分析_php技巧

WBOY
WBOYOriginal
2016-05-16 20:14:071034browse

本文实例讲述了php线性表的入栈与出栈用法。分享给大家供大家参考。具体如下:

<&#63;php 
$stack = array("Simon", "Elaine"); //定义数组 
array_push($stack, "Helen", "Peter"); //入栈 
print_r($stack); 
&#63;>
<&#63;php 
$stack = array("Simon", "Elaine"); //定义数组 
array_unshift ($stack, "Helen", "Peter"); //入栈 
print_r($stack); 
&#63;>
<&#63;php 
$stack = array("Simon", "Elaine", "Helen", "Peter"); 
echo array_pop($stack)."/n"; //出栈 
print_r($stack); 
&#63;>
<&#63;php 
$stack = array("Simon", "Elaine", "Helen", "Peter"); 
echo array_shift($stack)."/n"; //出栈 
print_r($stack); 
&#63;>

希望本文所述对大家的php程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn