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, ∼5844🔥, 0💬
Popular Posts:
What are "*..." and "**..." Wildcard Parameters in Function Definitions? If you want to define a fun...
How To Move Uploaded Files To Permanent Directory in PHP? PHP stores uploaded files in a temporary d...
How To Use an Array as a Queue in PHP? A queue is a simple data structure that manages data elements...
How To Avoid the Undefined Index Error in PHP? If you don't want your PHP page to give out errors as...
How to use the "set-variable" Policy Statement to create custom variables for an Azure API service o...