PHP - Ds\Queue::toArray() 函数



PHP 的 Ds\Queue::toArray() 函数用于将当前队列转换为数组。数组是一种线性数据结构,包含多个相同数据类型的多个数据。调用此函数后,队列将转换为数组,您可以在示例输出中进行验证。

语法

以下是 PHP Ds\Queue::toArray() 函数的语法:

public array Ds\Queue::toArray( void )

参数

此函数不接受任何参数。

返回值

此函数返回一个数组,其中包含所有值,顺序与队列相同。

示例 1

以下程序演示了 PHP Ds\Queue::toArray() 函数的使用:

<?php  
   $queue = new \Ds\Queue([10, 20, 30, 40, 50]);
   echo "The original queue is: \n";
   print_r($queue);
   echo "An array is: \n";
   #using toArray() function
   print_r($queue->toArray());
?>

输出

以上程序产生以下输出:

The original queue is:
Ds\Queue Object
(
    [0] => 10
    [1] => 20
    [2] => 30
    [3] => 40
    [4] => 50
)
An array is:
Array
(
    [0] => 10
    [1] => 20
    [2] => 30
    [3] => 40
    [4] => 50
)

示例 2

以下是 PHP Ds\Queue::toArray() 函数的另一个示例。我们使用此函数将此队列转换为数组:

<?php  
   $queue = new \Ds\Queue(["Tutorials", "Point", "India"]);
   echo "The original queue is: \n";
   print_r($queue);
   #using toArray() function
   $arr = $queue->toArray();
   echo "An array is: \n";
   print_r($arr);
?>

输出

执行上述程序后,将显示以下输出:

The original queue is:
Ds\Queue Object
(
    [0] => Tutorials
    [1] => Point
    [2] => India
)
An array is:
Array
(
    [0] => Tutorials
    [1] => Point
    [2] => India
)
php_function_reference.htm
广告