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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。