📜  PHP | Ds\Set __construct()函数

📅  最后修改于: 2022-05-13 01:56:24.970000             🧑  作者: Mango

PHP | Ds\Set __construct()函数

Ds\Set::__construct()函数是PHP中的一个内置函数,用于创建集合的新实例。

句法:

Ds\Set::__construct( $values )

参数:此函数接受单个参数$values ,它保存可遍历的对象或数组以使用初始值。

下面的程序说明了PHP中的Ds\Set::__construct()函数:

方案一:


输出:
Ds\Set Object
(
)
Ds\Set Object
(
    [0] => G
    [1] => E
    [2] => K
    [3] => S
)

方案二:


输出:
object(Ds\Set)#1 (5) {
  [0]=>
  int(2)
  [1]=>
  int(3)
  [2]=>
  int(6)
  [3]=>
  int(7)
  [4]=>
  int(8)
}
object(Ds\Set)#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-set.construct。 PHP