Ds \ Deque::set()函数是PHP中的内置函数,用于在Deque中给定索引处设置值。
用法:
public Ds\Deque::set( $index, $value ):void
参数:该函数接受上述和以下所述的两个参数:
- index:此参数保存要在其上设置元素的索引值。
- value:此参数保存要在给定索引处设置的值。
返回值:该函数不返回任何值。
以下示例程序旨在说明PHP中的Ds \ Deque::set()函数:
程序1:
<?php
// Declare a deque
$deck = new \Ds\Deque(["geeks", "for", "geeks", "practice"]);
echo("Elements of Deque\n");
// Display the Deque elements
print_r($deck);
// Updating the deque element at index 2
$deck->set(2, "geeksforgeeks");
echo("Deque after setting value at index 2\n");
// Display the Deque elements
print_r($deck);
?>
输出:
Elements of Deque Ds\Deque Object ( [0] => geeks [1] => for [2] => geeks [3] => practice ) Deque after setting value at index 2 Ds\Deque Object ( [0] => geeks [1] => for [2] => geeksforgeeks [3] => practice )
程序2:
<?php
// Declare a deque
$deck = new \Ds\Deque([1, 2, 3, 4, 5, 6]);
echo("Elements of Deque\n");
// Display the Deque elements
print_r($deck);
// Updating the deque element at index 2
$deck->set(4, 10);
echo("Deque after setting value at index 2\n");
// Display the Deque elements
print_r($deck);
?>
输出:
Elements of Deque Ds\Deque Object ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 ) Deque after setting value at index 2 Ds\Deque Object ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 10 [5] => 6 )
参考: http://php.net/manual/en/ds-deque.set.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 set() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。