PHP中的Ds \ Map::toArray()函数用于获取通过将Map实例转换为Array生成的数组。结果数组是一个关联数组,其元素的顺序与指定Map实例的顺序相同。
用法:
array public Ds\Map::toArray ( void )
参数:该函数不接受任何参数。
返回值:该函数返回一个包含指定Map实例的所有元素的关联数组。
以下示例程序旨在说明PHP中的Ds \ Map::toArray()函数:
程序1:
<?php
// PHP program to illustrate toArray() function
$map = new \Ds\Map([1 => 10, 2 => 20, 3 => 30]);
print_r($map->toArray());
?>
输出:
Array ( [1] => 10 [2] => 20 [3] => 30 )
程序2:
<?php
// PHP program to illustrate toArray() function
$map = new \Ds\Map(["first" => "Geeks", "second" => "for",
"third" => "Geeks"]);
print_r($map->toArray());
?>
输出:
Array ( [first] => Geeks [second] => for [third] => Geeks )
参考:http://php.net/manual/en/ds-map.toarray.php
相关用法
- PHP Ds\Set toArray()用法及代码示例
- PHP Ds\Vector toArray()用法及代码示例
- PHP Ds\Queue toArray()用法及代码示例
- PHP SplFixedArray toArray()用法及代码示例
- PHP Ds\Deque toArray()用法及代码示例
- PHP Ds\Stack toArray()用法及代码示例
- PHP Ds\PriorityQueue toArray()用法及代码示例
- PHP Ds\Pair toArray()用法及代码示例
- PHP Ds\Collection toArray()用法及代码示例
- PHP min( )用法及代码示例
- PHP Ds\Map xor()用法及代码示例
- PHP max( )用法及代码示例
- PHP pi( )用法及代码示例
- PHP tan( )用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP Ds\Map toArray() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。