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
)
⇒ Randomly Retrieving Array Values in PHP
⇐ Using an Array as a Queue in PHP
2017-01-11, ∼3089🔥, 0💬
Popular Posts:
Where can I download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka? You can following ...
Why am I getting this "Docker failed to initialize" error? After installing the latest version of Do...
Why I am getting "The Windows SDK version 8.1 was not found" error, when building my C++ application...
How to start Visual Studio Command Prompt? I have Visual Studio 2017 Community version with Visual C...
What are "*..." and "**..." Wildcard Parameters in Function Definitions? If you want to define a fun...