(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) }