Ds\Set::toArray() 函数可以将集合转换为数组。
用法
public array Ds\Set::toArray( void )
Ds\Set::toArray() 函数没有任何参数。
Ds\Set::toArray() 函数可以返回一个数组,其中包含与集合相同顺序的所有值。
例子1
<?php
$set = new \Ds\Set([1, 2, 3, 4, 5]);
echo "The array is:\n";
print_r($set->toArray());
?>
例子2
<?php
$set = new \Ds\Set(["Tutorials", "Point", "India"]);
echo "The array is:\n";
print_r($set->toArray());
?>
相关用法
- PHP Ds Set count()用法及代码示例
- PHP Ds Set intersect()用法及代码示例
- PHP Ds Set remove()用法及代码示例
- PHP Ds Set slice()用法及代码示例
- PHP Ds Set sort()用法及代码示例
- PHP Ds Set merge()用法及代码示例
- PHP Ds Set reduce()用法及代码示例
- PHP Ds Set reversed()用法及代码示例
- PHP Ds Set contains()用法及代码示例
- PHP Ds Set filter()用法及代码示例
- PHP Ds Set add()用法及代码示例
- PHP Ds Set join()用法及代码示例
- PHP Ds Set get()用法及代码示例
- PHP Ds Set reverse()用法及代码示例
- PHP Ds Set capacity()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Ds Set toArray() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。