php线性表的入栈与出栈实例分析_PHP教程

WBOY
Release: 2016-07-13 09:50:49
Original
1199 people have browsed it

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

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

1

2

3

4

5

$stack = array("Simon", "Elaine"); //定义数组

array_push($stack, "Helen", "Peter"); //入栈

print_r($stack);

?>

1

2

3

4

5

$stack = array("Simon", "Elaine"); //定义数组

array_unshift ($stack, "Helen", "Peter"); //入栈

print_r($stack);

?>

1

2

3

4

5

$stack = array("Simon", "Elaine", "Helen", "Peter");

echo array_pop($stack)."/n"; //出栈

print_r($stack);

?>

1

2

3

4

5

$stack = array("Simon", "Elaine", "Helen", "Peter");

echo array_shift($stack)."/n"; //出栈

print_r($stack);

?>

www.bkjia.com true http://www.bkjia.com/PHPjc/1015879.html TechArticle php线性表的入栈与出栈实例分析 本文实例讲述了php线性表的入栈与出栈用法。分享给大家供大家参考。具体如下: 1 2 3 4 5 ?php $stack = arra...
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!