PHP中的Ds /Map::reverse()函数用于就地反转指定Map实例的元素。也就是说,该函数就地反转了指定Map实例中存在的元素的顺序。
用法:
Ds\Pair public Ds\Map::skip ( int $position )
参数:该函数不接受任何参数。
返回值:该函数不返回任何值。
以下示例程序旨在说明Ds /Map::reverse()函数:
程序1:
<?php
// PHP program to illustrate reverse() function
$map = new \Ds\Map([1 => 10, 2 => 20, 3 => 30]);
// Reverse the Map
$map->reverse();
// Print the revresed Map
print_r($map);
?>
输出:
Ds\Map Object ( [0] => Ds\Pair Object ( [key] => 3 [value] => 30 ) [1] => Ds\Pair Object ( [key] => 2 [value] => 20 ) [2] => Ds\Pair Object ( [key] => 1 [value] => 10 ) )
程序2:
<?php
// PHP program to illustrate reverse() function
$map = new \Ds\Map(["first" => "Geeks", "second" => "for",
"third" => "Geeks"]);
// Reverse the Map
$map->reverse();
// Print the Map
print_r($map);
?>
输出:
Ds\Map Object ( [0] => Ds\Pair Object ( [key] => third [value] => Geeks ) [1] => Ds\Pair Object ( [key] => second [value] => for ) [2] => Ds\Pair Object ( [key] => first [value] => Geeks ) )
参考:http://php.net/manual/en/ds-map.reverse.php
相关用法
- PHP Ds\Set reverse()用法及代码示例
- PHP Ds\Deque reverse()用法及代码示例
- PHP Ds\Sequence reverse()用法及代码示例
- PHP Ds\Vector reverse()用法及代码示例
- PHP each()用法及代码示例
- PHP dir()用法及代码示例
- PHP exp()用法及代码示例
- PHP Ds\Map map()用法及代码示例
- PHP Ds\Map last()用法及代码示例
- PHP abs()用法及代码示例
- PHP tan( )用法及代码示例
- PHP sin( )用法及代码示例
- PHP cos( )用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP | Ds\Map reverse() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。