PHP | Ds\Stack __construct()函数
Ds\Stack::__construct()函数是PHP中的一个内置函数,用于创建堆栈的新实例。
句法:
public Ds\Stack::__construct( $values )
参数:此函数接受单个参数$values ,它保存可遍历的对象或数组以使用初始值。
下面的程序说明了PHP中的 Ds\Stack::__construct()函数:
方案一:
输出:
Ds\Stack Object
(
)
Ds\Stack Object
(
[0] => S
[1] => K
[2] => E
[3] => G
)
方案二:
输出:
object(Ds\Stack)#1 (5) {
[0]=>
int(8)
[1]=>
int(7)
[2]=>
int(6)
[3]=>
int(3)
[4]=>
int(2)
}
object(Ds\Stack)#2 (6) {
[0]=>
int(10)
[1]=>
int(9)
[2]=>
int(8)
[3]=>
int(5)
[4]=>
int(3)
[5]=>
int(2)
}
参考: https://www. PHP.net/manual/en/ds-stack.construct。 PHP