Home > Backend Development > PHP Problem > How to use SplQueue::__construct() function in PHP?

How to use SplQueue::__construct() function in PHP?

醉折花枝作酒筹
Release: 2023-03-10 12:36:02
forward
1964 people have browsed it

This article will introduce to you how to use the "SplQueue::__construct()" function in PHP. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

How to use SplQueue::__construct() function in PHP?

SplQueue::__construct() function is a built-in function in PHP, used to construct a queue implemented using a double linked list.

The syntax is as follows:

void SplQueue::__construct(void)
Copy after login

Parameters: This function does not accept any parameters.

Return value: This function does not return any value.

The following program illustrates the SplQueue::__ construct() function in PHP:

Program 1:

<?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" ;
?>
Copy after login

The output is as follows:

1
2
3
Copy after login

Program 2:

<?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" ;
}
?>
Copy after login

The output is as follows:

1
5
1
11
15
17
Copy after login

Recommended learning: php video tutorial

The above is the detailed content of How to use SplQueue::__construct() function in PHP?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template