在PHP中,sizeof()
函數用于返回數組或對象的長度或元素個數。以下是一些正確使用 sizeof()
函數的示例:
$array = array(1, 2, 3, 4, 5);
$length = sizeof($array);
echo $length; // Output: 5
$assoc_array = array('name' => 'John', 'age' => 30, 'city' => 'New York');
$length = sizeof($assoc_array);
echo $length; // Output: 3
class Person {
public $name = 'John';
public $age = 30;
public $city = 'New York';
}
$person = new Person();
$length = sizeof((array) $person);
echo $length; // Output: 3
請注意,sizeof()
函數是 count()
函數的別名,因此也可以使用 count()
來獲得數組或對象的長度。