Tools, FAQ, Tutorials:
Using an Array as a Queue in PHP
How To Use an Array as a Queue in PHP?
✍: FYIcenter.com
A queue is a simple data structure that manages data elements following the first-in-first-out rule. You use the following two functions together to use an array as a queue:
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_shift($waitingList);
array_push($waitingList, "Kia");
$next = array_shift($waitingList);
array_push($waitingList, "Sam");
print("Current waiting list:\n");
print_r($waitingList);
?>
This script will print:
Current waiting list:
Array
(
[0] => Kim
[1] => Kia
[2] => Sam
)
⇒ Using an Array as a Stack in PHP
⇐ Merging Two Arrays into a Single Array in PHP
2017-01-11, ∼6496🔥, 0💬
Popular Posts:
How to build a PHP script to dump Azure AD 2.0 Authentication Response? If you are use the Azure-AD-...
How To Copy Array Values to a List of Variables in PHP? If you want copy all values of an array to a...
How to install "C++/CLI Support" component in Visual Studio? I need to build my Visual Studio C++/CL...
How to add an API to an API product for internal testing on the Publisher Portal of an Azure API Man...
How to add request query string Parameters to my Azure API operation to make it more user friendly? ...