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, ∼6504🔥, 0💬
Popular Posts:
How to validate the id_token signature received from Azure AD v2.0 authentication response? You can ...
Where to find EPUB Sample Files? Here is a list of EPUB sample files collected by FYIcenter.com team...
How to use "xsl-transform" Azure API Policy Statement? The "xsl-transform" Policy Statement allows y...
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator"...
How To Loop through an Array without Using "foreach" in PHP? PHP offers the following functions to a...