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
相关用法
- PHP count()用法及代码示例
- PHP Ds\Map count()用法及代码示例
- PHP Ds\Set count()用法及代码示例
- PHP SplHeap count()用法及代码示例
- PHP Ds\Vector count()用法及代码示例
- PHP Ds\Queue count()用法及代码示例
- PHP Ds\PriorityQueue count()用法及代码示例
- PHP ArrayIterator count()用法及代码示例
- PHP Ds\Deque count()用法及代码示例
- PHP SplDoublyLinkedList count()用法及代码示例
- PHP SplObjectStorage count()用法及代码示例
- PHP SplFixedArray count()用法及代码示例
- PHP ArrayObject count()用法及代码示例
- PHP SimpleXMLElement count()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | Ds\Stack count() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。