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, 2168👍, 0💬
Popular Posts:
How to use .NET CLR Types in Azure API Policy? By default, Azure imports many basic .NET CLR (Common...
How to login to the Developer Portal internally by you as the publisher? Normally, the Developer Por...
How to use the API operation 2017 version setting "Rewrite URL template"? The API operation setting ...
How to add a new operation to an API on the Publisher Dashboard of an Azure API Management Service? ...
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML ...