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 )
Â
⇒PHP Built-in Functions for Arrays
⇒⇒PHP Tutorials
2017-01-11, 1638👍, 0💬
Popular Posts:
How to Build my "sleep" Docker image from the Alpine image? I want the container to sleep for 10 hou...
Where to find tutorials on RSS specifications? I want to learn it to describe my API services. Here ...
dev.FYIcenter.com is a Website for software developer looking for software development technologies,...
Where to find tutorials on PHP language? I want to know how to learn PHP. Here is a large collection...
What is EPUB 2.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 2.0 Metadata "dc:publisher" ...