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


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



Ds\Vector::reverse() 函數可以就地反轉向量。

用法

public void Ds\Vector::reverse ( void )

Ds\Vector::reverse() 函數沒有任何參數。

Ds\Vector::reverse() 函數不返回任何值。

例子1

<?php  
   $array = new \Ds\Vector([1, 2, 3, 4, 5]);  
   print_r($array);  
   
   echo("The vector after reversing:\n");  
   $array->reverse(); 
   
   print_r($array); 
?>

示例2

<?php  
   $array = new \Ds\Vector(["Tutorials", "Point", "India", "Tutorix", "Hyderabad"]);  
   print_r($array);  
   
   echo("The vector after reversing:\n");  
   $array->reverse(); 
   
   print_r($array); 
?>

相關用法


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