📜  PHP | Ds\Stack toArray()函数

📅  最后修改于: 2022-05-13 01:57:40.622000             🧑  作者: Mango

PHP | Ds\Stack toArray()函数

PHP的Ds\Stack::toArray()函数用于将堆栈转换为数组并返回转换后的数组。该函数不会修改实际的堆栈。

句法:

void public Ds\Stack::toArray ()

参数:该函数不接受任何参数。

返回值:此函数返回从堆栈生成的数组。

下面的程序说明了Ds\Stack::toArray()函数:



方案一:

PHP
push("Welcome");
$stack->push("to");
$stack->push("GfG");
 
// Print the converted array
print_r($stack->toArray());
 
// Print the Stack
print_r($stack);
 
?>


PHP
push("Welcome");
$stack->push("to");
$stack->push("GfG");
$stack->push(10);
$stack->push(5.5);
 
// Print the converted Array
print_r($stack->toArray());
 
// Print the Stack
print_r($stack);
 
?>


输出:

Array
(
    [0] => GfG
    [1] => to
    [2] => Welcome
)
Ds\Stack Object
(
    [0] => GfG
    [1] => to
    [2] => Welcome
)

方案二:

PHP

push("Welcome");
$stack->push("to");
$stack->push("GfG");
$stack->push(10);
$stack->push(5.5);
 
// Print the converted Array
print_r($stack->toArray());
 
// Print the Stack
print_r($stack);
 
?>

输出:

Array
(
    [0] => 5.5
    [1] => 10
    [2] => GfG
    [3] => to
    [4] => Welcome
)
Ds\Stack Object
(
    [0] => 5.5
    [1] => 10
    [2] => GfG
    [3] => to
    [4] => Welcome
)

参考文献:http:// PHP.NET /手动/ EN / DS-stack.toarray。 PHP