PHP | Ds\Deque get()函数
Ds\Deque::get()函数是PHP中的一个内置函数,用于返回给定索引处的值。
句法:
public Ds\Deque::get( $index ) : mixed
参数:此函数接受单个参数$index ,它保存要找到的元素的索引。
返回值:此函数返回给定索引处的值。
下面的程序说明了PHP中的Ds\Deque::get()函数:
方案一:
get(2));
?>
输出:
Elements in the Deque
Ds\Deque Object
(
[0] => 10
[1] => 20
[2] => 3
[3] => 40
[4] => 50
[5] => 6
)
Element at index 2 in the deque: int(3)
方案二:
get(2));
?>
输出:
Elements in the Deque
Ds\Deque Object
(
[0] => geeks
[1] => for
[2] => geeks
[3] => PHP
)
Element at index 2 in the deque: string(5) "geeks"
参考: http: PHP。 PHP