📜  PHP | Ds\Vector slice()函数

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

PHP | Ds\Vector slice()函数

Ds\Vector::slice()函数是PHP中的一个内置函数,用于返回给定向量的子向量。

句法:

Ds\Vector public Ds\Vector::slice( $index, $length )/pre>

Parameters: This function accepts two parameter as mentioned above and described below:
  • $index:此参数保存子向量的起始索引。索引值可以是正数和负数。如果索引值为正,则从向量的索引开始,如果索引值为负,则从结尾开始。
  • $length:该参数保存子向量的长度。该参数可以取正值和负值。如果长度为正,则子向量大小等于给定长度,如果长度为负,则向量将从末尾停止那么多值。
返回值:此函数返回给定范围的子向量。下面的程序说明了PHP中的Ds\Vector::slice()函数:程序 1:
slice(1, 2); 
  
echo("\nNew sub-vector\n"); 
  
// Display the sub-vector elements 
var_dump($res); 
  
?> 

输出:

Original vector:
object(Ds\Vector)#1 (6) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
  [3]=>
  int(4)
  [4]=>
  int(5)
  [5]=>
  int(6)
}

New sub-vector
object(Ds\Vector)#2 (2) {
  [0]=>
  int(2)
  [1]=>
  int(3)
}

方案二:

slice(2, -2);
  
echo("\nNew sub-vector\n");
  
// Display the sub-vector elements
var_dump($res);
  
$res = $vect->slice(4);
  
echo("\nNew sub-vector\n");
  
// Display the sub-vector elements
var_dump($res);
  
?>

输出:

Original vector:
object(Ds\Vector)#1 (6) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
  [3]=>
  int(4)
  [4]=>
  int(5)
  [5]=>
  int(6)
}

New sub-vector
object(Ds\Vector)#2 (2) {
  [0]=>
  int(3)
  [1]=>
  int(4)
}

New sub-vector
object(Ds\Vector)#3 (2) {
  [0]=>
  int(5)
  [1]=>
  int(6)
}

参考: http: PHP。 PHP