This article shares with you a small piece of code, which is about the code for implementing two-way queue in PHP. I hope it can help you.
<?phpclass Deque { private $queue = array(); public function addFirst($item) { return array_unshift($this->queue, $item); } public function addLast($item) { return array_push($this->queue, $item); } public function removeFirst() { return array_shift($this->queue); } public function removeLast() { return array_pop($this->queue); } }
Related recommendations:
Example of php implementing two-way queue
Detailed introduction to two-way queue
How to use php to implement a two-way queue code example
The above is the detailed content of PHP code to implement two-way queue. For more information, please follow other related articles on the PHP Chinese website!