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