Tools, FAQ, Tutorials:
Using an Array as a Stack in PHP
How To Use an Array as a Stack in PHP?
✍: FYIcenter.com
A stack is a simple data structure that manages data elements following the first-in-last-out rule. You use the following two functions together to use an array as a stack:
Here is a PHP script on how to use an array as a queue:
<?php $waitingList = array(); array_push($waitingList, "Joe"); array_push($waitingList, "Leo"); array_push($waitingList, "Kim"); $next = array_pop($waitingList); array_push($waitingList, "Kia"); $next = array_pop($waitingList); array_push($waitingList, "Sam"); print("Current waiting list:\n"); print_r($waitingList); ?>
This script will print:
Current waiting list: Array ( [0] => Joe [1] => Leo [2] => Sam )
Â
⇒PHP Built-in Functions for Arrays
⇒⇒PHP Tutorials
2017-01-11, 1636👍, 0💬
Popular Posts:
How to use "{{...}}" Liquid Codes in "set-body" Policy Statement? The "{{...}}" Liquid Codes in "set...
Where to find tutorials on Visual Studio? I want to know How to learn Visual Studio. Here is a large...
How To Control Padding Spaces within a Table Cell? Cell padding spaces are spaces between cell inner...
How to use the XML to JSON Conversion Tool at freeformatter.com? If you want to try the XML to JSON ...
How to detect errors occurred in the json_decode() call? You can use the following two functions to ...