当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds\Vector __construct()用法及代码示例


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

用法:

public Ds\Vector::__construct( $values )

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


以下示例程序旨在说明PHP中的Ds \ Vector::__construct()函数:

程序1:

<?php  
    
// Declare a new Vector 
$vect = new \Ds\Vector(); 
print_r($vect); 
   
// Declare a new set 
$vect = new \Ds\Vector(['G', 'E', 'K', 'S']);  
print_r($vect); 
   
?>
输出:
Ds\Vector Object
(
)
Ds\Vector Object
(
    [0] => G
    [1] => E
    [2] => K
    [3] => S
)

程序2:

<?php  
    
// Declare a new vector 
$vect = new \Ds\Vector([2, 3, 6, 7, 8]);  
var_dump($vect); 
   
// Declare a new vector 
$vect = new \Ds\Vector([2, 3, 5, 8, 9, 10]);  
var_dump($vect); 
?>
输出:
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



相关用法


注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | Ds\Vector __construct() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。