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
$q = new SplQueue();
$q [] = 1;
$q [] = 2;
$q [] = 3;
echo $q [0] . "\n" ;
echo $q [1] . "\n" ;
echo $q [2] . "\n" ;
?>
|
Program 2:
<?php
$gfg = new SplQueue();
$gfg [] = 1;
$gfg [] = 5;
$gfg [] = 1;
$gfg [] = 11;
$gfg [] = 15;
$gfg [] = 17;
foreach ( $gfg as $elem ) {
echo $elem . "\n" ;
}
?>
|
Reference: https://www.php.net/manual/en/splqueue.construct.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
23 Jun, 2023
Like Article
Save Article