Ds \ Vector::remove()函數是PHP中的內置函數,用於從索引中刪除值並返回它。
用法:
public Ds\Vector::remove( $index ):mixed
參數:該函數接受單個參數$index,該參數保存要從中刪除元素的索引。
返回值:此函數返回已刪除的值。
異常:如果給定的索引超出範圍或無效,則此函數將引發OutOfRangeException。
以下示例程序旨在說明PHP中的Ds \ Vector::remove()函數:
程序1:
<?php
// Declare new vector
$vect = new \Ds\Vector(["geeks", "for",
"geeks", "DataStructures"]);
echo("Vector Elements\n");
// Display the Vector elements
print_r($vect);
echo("\nLast element of the vector:\n");
// Use remove() function to remove
// value at index 3 and return it
var_dump($vect->remove(3));
?>
輸出:
Vector Elements Ds\Vector Object ( [0] => geeks [1] => for [2] => geeks [3] => DataStructures ) Last element of the vector: string(14) "DataStructures"
程序2:
<?php
// Declare new vector
$vect = new \Ds\Vector([1, 2, 3, 4, 5, 6]);
echo("Vector Elements\n");
// Display the Vector elements
print_r($vect);
echo("\nLast element of the vector:\n");
// Use remove() function to remove
// value at index 3 and return it
var_dump($vect->remove(3));
?>
輸出:
Vector Elements Ds\Vector Object ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 ) Last element of the vector: int(4)
參考: http://php.net/manual/en/ds-vector.remove.php
相關用法
- PHP Ds\Map remove()用法及代碼示例
- p5.js remove()用法及代碼示例
- d3.js d3.set.remove()用法及代碼示例
- PHP Ds\Set remove()用法及代碼示例
- d3.js d3.map.remove()用法及代碼示例
- PHP Ds\Deque remove()用法及代碼示例
- PHP Ds\Sequence remove()用法及代碼示例
- PHP Ds\Vector remove()用法及代碼示例
注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 PHP | Ds\Vector remove() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。