PHP中Ds \ Set類的Ds \ Set::toArray()函數是一個內置函數,用於將Set轉換為關聯數組。這不會修改實際的Set。此方法返回一個具有Set值的數組,而不更改元素的順序。
用法:
array public Ds\Set::toArray ( void )
參數:該函數不接受任何參數。
返回值:此函數返回通過轉換Set生成的關聯數組。
以下示例程序旨在說明Ds \ Set::toArray()函數:
程序1:
<?php
// Declare a set
$set = new \Ds\Set([1, 2, 3, 4, 5]);
// Corresponding array is
echo "Array is:\n";
print_r($set->toArray());
?>
輸出:
Array is: Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 )
程序2:
<?php
// Declare a set
$set = new \Ds\Set(["Geeks", "for", "Geeks"]);
// Corresponding array is
echo "Array is:\n";
print_r($set->toArray());
?>
輸出:
Array is: Array ( [0] => Geeks [1] => for )
參考: http://php.net/manual/en/ds-set.toarray.php
相關用法
- PHP Ds\Map toArray()用法及代碼示例
- PHP Ds\Collection toArray()用法及代碼示例
- PHP SplFixedArray toArray()用法及代碼示例
- PHP Ds\Queue toArray()用法及代碼示例
- PHP Ds\PriorityQueue toArray()用法及代碼示例
- PHP Ds\Vector toArray()用法及代碼示例
- PHP Ds\Stack toArray()用法及代碼示例
- PHP Ds\Deque toArray()用法及代碼示例
- PHP Ds\Pair toArray()用法及代碼示例
- PHP Ds\Map xor()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- PHP key()用法及代碼示例
- PHP end()用法及代碼示例
- PHP ord()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP Ds\Set toArray() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。