Ds \ Pair::toArray()函數是PHP中的內置函數,用於將Pair元素轉換為關聯數組。此函數不會修改實際的貨幣對。此方法返回一個數組,其值不更改元素的順序。
用法:
array Ds\Pair::toArray( void )
參數:該函數不接受任何參數。
返回值:此函數返回通過轉換Pair元素生成的關聯數組。
以下示例程序旨在說明PHP中的Ds \ Pair::toArray()函數:
程序1:
<?php
// Declare a Pair
$pair = new \Ds\Pair("a", "GeeksforGeeks");
// Corresponding array is
echo "Array is:\n";
print_r($pair->toArray());
?>
輸出:
Array is: Array ( [key] => a [value] => GeeksforGeeks )
程序2:
<?php
// Declare a Pair
$pair = new \Ds\Pair([1, 2], ["GeeksforGeeks", "Welcome"]);
// Corresponding array is
echo "Array is:\n";
var_dump($pair->toArray());
?>
輸出:
Array is: array(2) { ["key"]=> array(2) { [0]=> int(1) [1]=> int(2) } ["value"]=> array(2) { [0]=> string(13) "GeeksforGeeks" [1]=> string(7) "Welcome" } }
參考: https://www.php.net/manual/en/ds-pair.toarray.php
相關用法
- PHP Ds\Map toArray()用法及代碼示例
- PHP Ds\Set toArray()用法及代碼示例
- PHP Ds\Stack toArray()用法及代碼示例
- PHP Ds\PriorityQueue toArray()用法及代碼示例
- PHP Ds\Collection toArray()用法及代碼示例
- PHP SplFixedArray toArray()用法及代碼示例
- PHP Ds\Queue toArray()用法及代碼示例
- PHP Ds\Vector toArray()用法及代碼示例
- PHP Ds\Deque toArray()用法及代碼示例
- JQuery Misc toArray()用法及代碼示例
- p5.js nfc()用法及代碼示例
- PHP dir()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | Ds\Pair toArray() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。