在PHP中,count()
函數的作用是用于獲取數組或對象的元素個數。它可以用于計算數組的長度或對象的屬性數量。 count()
函數可以接受一個數組或一個可數對象作為參數,并返回該對象的元素個數。如果參數不是一個數組或可數對象,則返回0。
示例:
$numbers = [1, 2, 3, 4, 5];
$count = count($numbers);
echo $count; // 輸出: 5
$person = new stdClass();
$person->name = 'John';
$person->age = 25;
$count = count($person);
echo $count; // 輸出: 2
$emptyArray = [];
$count = count($emptyArray);
echo $count; // 輸出: 0