📜  PHP | Ds\Stack count()函数

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

PHP | Ds\Stack count()函数

Ds\Stack::count()函数是PHP中的一个内置函数,用于计算堆栈中存在的元素数量。

句法:

int Ds\Stack::count( void )

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

返回值:此函数返回堆栈中存在的元素数。

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

方案一:

count()); 
  
?> 
输出:
object(Ds\Stack)#1 (3) {
  [0]=>
  int(21)
  [1]=>
  int(15)
  [2]=>
  int(10)
}
Number of elements present in the stack: 3

方案二:

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