PHP - Ds Set::construct() 函数



Ds\Set::__construct() 函数可以创建一个新实例。

语法

public Ds\Set::__construct([ mixed $...values ] )

Ds\Set::__construct() 函数可以使用可遍历对象或数组作为初始值来创建一个新实例。

示例 1

<?php 
   $set = new \Ds\Set(); 
   print_r($set); 
  
   $set = new \Ds\Set(["I", "N", "D", "I", "A"]);  
   print_r($set); 
?>

示例 2

<?php  
   $set = new \Ds\Set([1, 3, 5, 7, 9]);  
   var_dump($set); 
  
   $set = new \Ds\Set([1, 3, 5, 7, 9, 10]);  
   var_dump($set); 
?>
php_function_reference.htm
广告