(PECL ds >= 1.0.0)
Ds\Stack::toArray — 将栈转换为 数组
将栈转换为 数组。
注意: 尚不支持强制转换为 数组。
注意:
尚不支持强制转换为 数组。
此函数没有参数。
一个 数组,包含栈中所有值,顺序与栈相同。
示例 #1 Ds\Stack::toArray() 示例
<?php$stack = new \Ds\Stack([1, 2, 3]);var_dump($stack->toArray());?>
以上示例将输出类似以下内容
array(3) { [0]=> int(3) [1]=> int(2) [2]=> int(1) }