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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。