Tools, FAQ, Tutorials:
Using an Array as a Stack in PHP
How To Use an Array as a Stack in PHP?
✍: FYIcenter.com
A stack is a simple data structure that manages data elements following the first-in-last-out rule. You use the following two functions together to use an array as a stack:
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_pop($waitingList); array_push($waitingList, "Kia"); $next = array_pop($waitingList); array_push($waitingList, "Sam"); print("Current waiting list:\n"); print_r($waitingList); ?>
This script will print:
Current waiting list: Array ( [0] => Joe [1] => Leo [2] => Sam )
⇒ Randomly Retrieving Array Values in PHP
⇐ Using an Array as a Queue in PHP
2017-01-11, 2476🔥, 0💬
Popular Posts:
How to use the "set-variable" Policy Statement to create custom variables for an Azure API service o...
How to convert JSON Objects to PHP Associative Arrays using the json_decode() function? Actually, JS...
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claim...
What Is Azure API Management Service? Azure API Management as a turnkey solution for publishing APIs...
What is EPUB 3.0 Metadata "dcterms:modified" property? EPUB 3.0 Metadata "dcterms:modified" is a req...