PHP SplQueue::__construct() Function Last Updated : 07 Mar, 2024 Comments Improve Suggest changes 1 Likes Like Report The SplQueue::__construct() function is an inbuilt function in PHP which is used to construct a queue which is implemented using a doubly-linked list. Syntax: void SplQueue::__construct(void) Parameters: This function does not accept any parameter. Return Value: This function does not return any value. Below programs illustrate the SplQueue::__construct() function in PHP: Program 1: php <?php // Create a new empty queue $q = new SplQueue(); $q[] = 1; $q[] = 2; $q[] = 3; // Print the queue elements echo $q[0] . "\n"; echo $q[1] . "\n"; echo $q[2] . "\n"; ?> Output: 1 2 3 Program 2: php <?php // Create some fixed size array $gfg = new SplQueue(); $gfg[] = 1; $gfg[] = 5; $gfg[] = 1; $gfg[] = 11; $gfg[] = 15; $gfg[] = 17; foreach ($gfg as $elem) { echo $elem . "\n"; } ?> Output: 1 5 1 11 15 17 Create Quiz Comment R R_Raj Follow 1 Improve R R_Raj Follow 1 Improve Article Tags : Web Technologies PHP PHP-function Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like