Ds \ Deque::get()函数是PHP中的内置函数,用于返回给定索引处的值。
用法:
public Ds\Deque::get( $index ):mixed
参数:该函数接受单个参数$index,该参数保存要为其找到元素的索引。
返回值:此函数返回给定索引处的值。
以下示例程序旨在说明PHP中的Ds \ Deque::get()函数:
程序1:
<?php
// Declare a deque
$deck = new \Ds\Deque([10, 20, 3, 40, 50, 6]);
echo("Elements in the Deque\n");
// Display the Deque elements
print_r($deck);
echo("\nElement at index 2 in the deque:");
// Use get() function to find the index value
var_dump($deck->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)
程序2:
<?php
// Declare a deque
$deck = new \Ds\Deque(["geeks", "for", "geeks", "PHP"]);
echo("Elements in the Deque\n");
// Display the Deque elements
print_r($deck);
echo("\nElement at index 2 in the deque:");
// Use get() function to find the index value
var_dump($deck->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.net/manual/en/ds-deque.get.php
相关用法
- d3.js d3.lab()用法及代码示例
- PHP exp()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP sin( )用法及代码示例
- PHP abs()用法及代码示例
- PHP cos( )用法及代码示例
- PHP tan( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP next()用法及代码示例
- PHP Ds\Map get()用法及代码示例
- d3.js d3.sum()用法及代码示例
注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 PHP | Ds\Deque get() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。