PHP Ds Deque remove()函数
Ds\Deque::remove() 函数可以通过索引删除并返回一个值。
语法
public mixed Ds\Deque::remove( int $index )
Ds\Deque::remove()函数可以返回已删除的值。
如果索引无效,Ds\Deque::remove()函数可以抛出OutOfRangeException异常。
示例1
<?php
deque = new \Ds\Deque([10, 20, 30, 40, 50]); echo("The elements in deque: \n"); print_r(deque);
echo("\n The element at index 2:");
print_r($deque->remove(2));
?>
示例2
<?php
deque = new \Ds\Deque(["Tutorials", "Point", "India"]); echo("The elements in deque: \n"); print_r(deque);
echo("\n The element at index 1:");
print_r($deque->remove(1));
?>