當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Ds Vector slice()用法及代碼示例



Ds\Vector::slice() 函數可以返回給定範圍的子向量。

用法

public Ds\Vector Ds\Vector::slice( int $index [, int $length ] )

Ds\Vector::slice() 函數可以創建給定範圍的子向量。

例子1

<?php   
   $vector = new \Ds\Vector([1, 2, 3, 4, 5]);  
   echo("The original vector:\n");   
   var_dump($vector);  
   
   $result = $vector->slice(1, 2); 
   echo("\n The new sub-vector:\n");  
   var_dump($result);   
?>

例子2

<?php 
   $vector = new \Ds\Vector([1, 2, 3, 4, 5]); 
   echo("The original vector:\n"); 
   var_dump($vector); 
  
   $result = $vector->slice(2, -2); 
   echo("\n The new sub-vector:\n"); 
   var_dump($result); 
   
   $result = $vector->slice(4); 
   echo("\n The new sub-vector:\n"); 
   var_dump($result);
?>

相關用法


注:本文由純淨天空篩選整理自 PHP - Ds Vector slice() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。