PHP Ds\Queue toArray()函数
PHP的Ds\Queue::toArray()函数用于将 Queue 转换为PHP的关联数组。队列的值按照它们出现在队列中的相同顺序分配给数组。
句法:
array public Ds\Queue::toArray ( void )
参数:该函数不接受任何参数。
返回值:该函数将队列转换为关联数组并返回该数组。
下面的程序说明了PHP的Ds\Queue::toArray()函数:
push("One", 1);
$q->push("Two", 2);
$q->push("Three", 3);
echo "The equivalent array is: \n";
print_r($q->toArray());
输出:
The equivalent array is:
Array
(
[0] => One
[1] => 1
[2] => Two
[3] => 2
[4] => Three
[5] => 3
)
参考文献:http:// PHP.NET /手动/ EN / DS-queue.toarray。 PHP