溫馨提示×

php sizeof能用于對象嗎

PHP
小樊
82
2024-07-13 19:59:20
欄目: 編程語言

在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

0