在PHP中,sizeof()
函數(shù)用于返回數(shù)組或?qū)ο蟮脑財?shù)量。因此,sizeof()
函數(shù)可以用于對象,但實際上更常用的是 count()
函數(shù)來獲取對象內(nèi)的元素數(shù)量。例:
class Example {
public $foo = 'bar';
public $baz = 'qux';
}
$example = new Example();
echo count((array) $example); // 輸出 2