PHP的Ds \ Stack::toArray()函數用於將堆棧轉換為數組並返回轉換後的數組。此函數不會修改實際的堆棧。
用法:
void public Ds\Stack::toArray ()
參數:該函數不接受任何參數。
返回值:此函數返回從堆棧生成的數組。
以下示例程序旨在說明Ds \ Stack::toArray()函數:
程序1:
<?php
// PHP program to illustarte the
// toArray() function
// Create a Stack instance
$stack = new \Ds\Stack();
// Pushing elements to Stack
$stack->push("Welcome");
$stack->push("to");
$stack->push("GfG");
// 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 )
程序2:
<?php
// PHP program to illustarte the
// toArray() function
// Create a Stack instance
$stack = new \Ds\Stack();
// Pushing Mixed value elements to Stack
$stack->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/manual/en/ds-stack.toarray.php
相關用法
- PHP Ds\Map toArray()用法及代碼示例
- PHP Ds\Set toArray()用法及代碼示例
- PHP SplFixedArray toArray()用法及代碼示例
- PHP Ds\Queue toArray()用法及代碼示例
- PHP Ds\Collection toArray()用法及代碼示例
- PHP Ds\Pair toArray()用法及代碼示例
- PHP Ds\Deque toArray()用法及代碼示例
- PHP Ds\PriorityQueue toArray()用法及代碼示例
- PHP Ds\Vector toArray()用法及代碼示例
- PHP min( )用法及代碼示例
- PHP pow( )用法及代碼示例
- PHP exp()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
- PHP Ds\Set sum()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP | Ds\Stack toArray() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。