PHP中的Ds \ Map::reversed()函数用于获取指定Map实例的反向元素的副本。也就是说,该函数返回Map实例的副本,其中元素具有相反的顺序。此函数不会影响当前的Map实例。
用法:
Ds\Map public Ds\Map::reversed ( void )
参数:该函数不接受任何参数。
返回值:该函数返回当前Map实例的副本,其中元素的顺序相反。
以下示例程序旨在说明Ds \ Map::reversed()函数:
程序:
<?php
// PHP program to illustrate reversed() function
$map = new \Ds\Map([1 => 10, 2 => 20, 3 => 30]);
$reversedMap = new \Ds\Map();
// Reverse copy of the Map
$reversedMap = $map->reversed();
// Print the original Map
print("Original Map:\n");
print_r($map);
// Print the reversed Map
print("\nReversed copy of Map:\n");
print_r($reversedMap);
?>
输出:
Original Map: Ds\Map Object ( [0] => Ds\Pair Object ( [key] => 1 [value] => 10 ) [1] => Ds\Pair Object ( [key] => 2 [value] => 20 ) [2] => Ds\Pair Object ( [key] => 3 [value] => 30 ) ) Reversed copy of 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 ) )
参考:http://php.net/manual/en/ds-map.reversed.php
相关用法
- PHP Ds\Set reversed()用法及代码示例
- PHP Ds\Deque reversed()用法及代码示例
- PHP Ds\Vector reversed()用法及代码示例
- PHP Ds\Sequence reversed()用法及代码示例
- PHP cos( )用法及代码示例
- PHP tan( )用法及代码示例
- PHP pow( )用法及代码示例
- PHP abs()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- PHP sin( )用法及代码示例
- PHP min( )用法及代码示例
- PHP exp()用法及代码示例
- PHP pi( )用法及代码示例
- PHP max( )用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP | Ds\Map reversed() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。