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


PHP Ds\Collection::toArray()用法及代码示例



Ds\Collection::toArray() 函数可以将集合转换为数组。

用法

abstract public array Ds\Collection::toArray( void )

Ds\Collection::toArray() 函数没有任何参数,可以返回一个数组,该数组包含与集合相同顺序的所有值。

示例1

<?php  
   $collection = new \Ds\Vector([10, 15, 20, 25, 30, 35]); 
   var_dump($collection->toArray());
?>

示例2

<?php  
   $collection = new \Ds\Vector([10, 15, 20, 25, 30, 35]); 
  
   print_r($collection); 
   print_r($collection->toArray());
?>

相关用法


注:本文由纯净天空筛选整理自 PHP - Ds\Collection::toArray()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。