当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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



Ds\Stack::count() 函数可用于计算堆栈中存在的元素数量。

用法

int Ds\Stack::count( void )

Ds\Stack::count() 函数没有任何参数。

Ds\Stack::count() 函数可以返回堆栈中值的数量。

示例1

<?php  
   $stack = new \Ds\Stack([1, 4, 5, 7, 9, 10]);  
   var_dump($stack);  
   
   echo "The number of elements present in a stack:";  
   print_r($stack->count());  
?>

示例2

<?php  
   $stack = new \Ds\Stack(["Tutorials", "Point", "India"]);  
   print_r($stack);  
  
   echo "The number of elements present in a stack:";  
   var_dump($stack->count());  
?>

相关用法


注:本文由纯净天空筛选整理自 PHP - Ds\Stack::count() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。