當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Ds\Stack count()用法及代碼示例


Ds \ Stack::count()函數是PHP中的內置函數,用於計算堆棧中存在的元素數。

用法:

int Ds\Stack::count( void )

參數:該函數不接受任何參數。


返回值:此函數返回堆棧中存在的元素數。

以下示例程序旨在說明PHP中的Ds \ Stack::count()函數:

程序1:

<?php  
  
// Declare new stack  
$stack = new \Ds\Stack([10, 15, 21]);  
  
// Display the stack element  
var_dump($stack);  
  
// Count number of elements  
// present in the stack  
echo "Number of elements present in the stack:";  
print_r($stack->count());  
  
?> 
輸出:
object(Ds\Stack)#1 (3) {
  [0]=>
  int(21)
  [1]=>
  int(15)
  [2]=>
  int(10)
}
Number of elements present in the stack:3

程序2:

<?php  
  
// Declare new stack  
$stack = new \Ds\Stack(["Geeks", "for", "Keegs"]);  
  
// Display the stack element  
print_r($stack);  
  
// Display count of elements  
// present in the stack  
echo "Number of elements present in the stack:";  
var_dump($stack->count());  
  
?> 
輸出:
Ds\Stack Object
(
    [0] => Keegs
    [1] => for
    [2] => Geeks
)
Number of elements present in the stack:int(3)

參考: https://www.php.net/manual/en/ds-stack.count.php



相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | Ds\Stack count() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。