略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: SplStack::__construct

2024-05-10

SplStack::__construct

(PHP 5 >= 5.3.0, PHP 7)

SplStack::__constructConstructs a new stack implemented using a doubly linked list

说明

public SplStack::__construct()

This constructs a new empty stack.

注意:

This method automatically sets the iterator mode to SplDoublyLinkedList::IT_MODE_LIFO.

参数

此函数没有参数。

范例

示例 #1 SplStack::__construct() example

<?php
$q 
= new SplStack();

$q[] = 1;
$q[] = 2;
$q[] = 3;

foreach (
$q as $elem)  {
 echo 
$elem."\n";
}
?>

以上例程会输出:

3
2
1
add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/splstack.construct.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3