在對象中,count()函數用于計算對象中元素的數量。
例如:
class Fruit {
public $name;
public $color;
}
$apple = new Fruit();
$apple->name = 'Apple';
$apple->color = 'Red';
$banana = new Fruit();
$banana->name = 'Banana';
$banana->color = 'Yellow';
$fruits = [$apple, $banana];
echo count($fruits); // 輸出2
在上面的例子中,count()函數被用來計算$fruits數組中的元素數量,即兩個Fruit對象。