PHP | Ds\Deque remove()函数
Ds\Deque::remove()函数是PHP中的一个内置函数,用于删除和返回索引值。
句法:
public Ds\Deque::remove( $index ) : mixed
参数:此函数接受单个参数$index ,它保存要返回和删除元素的 Deque 的索引。
返回值:此函数返回并删除双端队列中给定索引处的元素。
下面的程序说明了PHP中的Ds\Deque::remove()函数:
方案一:
remove(2));
?>
输出:
Elements of Deque
Ds\Deque Object
(
[0] => 10
[1] => 20
[2] => 30
[3] => 40
[4] => 50
[5] => 60
)
Element at index 2: 30
方案二:
remove(1));
?>
输出:
Elements of Deque
Ds\Deque Object
(
[0] => geeks
[1] => for
[2] => geeks
)
Element at index 1: for
参考: http: PHP。 PHP