📅  最后修改于: 2023-12-03 15:33:32.556000             🧑  作者: Mango
PHP | Ds\Stack count()函数是Ds\Stack类中的一个方法,用于获取栈(stack)元素的数量。
public count(): int
无参数。
返回一个整数,表示栈(stack)元素的数量。
<?php
$stack = new \Ds\Stack();
$stack->push("apple");
$stack->push("banana");
$stack->push("cherry");
echo $stack->count(); // 输出 3
?>
如果栈(stack)是空的,则返回0。