當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Ds\Map toArray()用法及代碼示例


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



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP Ds\Map toArray() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。