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



PHP 的 Ds\Stack::toArray() 函数用于将当前栈转换为数组。转换后的数组包含与添加到栈中的值的顺序相同的元素。

PHP 中的数组是有序映射。映射是一种将值与键关联的类型。它可以被视为数组、列表、哈希表、字典、集合、栈、队列等。

语法

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

public Ds\Stack::toArray(): array

参数

此函数不接受任何参数。

返回值

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

示例 1

以下是 PHP Ds\Stack::toArray() 函数的基本示例:

<?php 
   $stack = new \Ds\Stack([1, 2, 3, 4, 5]);
   echo "The stack elements are: \n";
   print_r($stack);
   echo "The array is: \n";
   #using toArray() function
   $arr = $stack->toArray();
   print_r($arr);
?>

输出

上述程序产生以下输出:

The stack elements are:
Ds\Stack Object
(
    [0] => 5
    [1] => 4
    [2] => 3
    [3] => 2
    [4] => 1
)
The array is:
Array
(
    [0] => 5
    [1] => 4
    [2] => 3
    [3] => 2
    [4] => 1
)

示例 2

以下是 PHP Ds\Stack::toArray() 函数的另一个示例。我们使用此函数检索一个包含所有值的数组,其顺序与该栈相同(["Tutorials", "Point", "India"]):

<?php 
   $stack = new \Ds\Stack([]);
   $stack->push("Tutorials", "Point", "India");
   echo "The stack elements are: \n";
   print_r($stack);
   echo "The array is: \n";
   #using toArray() function
   $arr = $stack->toArray();
   print_r($arr);
?>

输出

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

The stack elements are:
Ds\Stack Object
(
    [0] => India
    [1] => Point
    [2] => Tutorials
)
The array is:
Array
(
    [0] => India
    [1] => Point
    [2] => Tutorials
)
php_function_reference.htm
广告