当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds Set toArray()用法及代码示例



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