如何检查PHP对象是否为空(即没有属性)?根据doc:
,内置empty()
不适用于对象
5.0.0 Objects with no properties are no longer considered empty.
答案 0 :(得分:7)
http://www.php.net/manual/en/reflectionclass.getproperties.php
class A {
public $p1 = 1;
protected $p2 = 2;
private $p3 = 3;
}
$a = new A();
$a->newProp = '1';
$ref = new ReflectionClass($a);
$props = $ref->getProperties();
// now you can use $props with empty
echo empty($props);
print_r($props);
/* output:
Array
(
[0] => ReflectionProperty Object
(
[name] => p1
[class] => A
)
[1] => ReflectionProperty Object
(
[name] => p2
[class] => A
)
[2] => ReflectionProperty Object
(
[name] => p3
[class] => A
)
)
*/
请注意,列表中未返回newProp
。
http://php.net/manual/en/function.get-object-vars.php
使用get_object_vars
将返回newProp
,但不会返回受保护和私有成员。
因此,根据您的需要,可以保证反射和get_object_vars的组合。
答案 1 :(得分:5)
这是解决方案:;
$reflect = new ReflectionClass($theclass);
$properties = $reflect->getProperties();
if(empty($properties)) {
//Empty Object
}
答案 2 :(得分:2)
你能用一些代码详细说明吗?我不知道你想要完成什么。
你无论如何都可以在这个对象上调用一个函数:
public function IsEmpty()
{
return ($this->prop1 == null && $this->prop2 == null && $this->prop3 == null);
}
答案 3 :(得分:1)
我相信(不完全确定)您可以覆盖对象的isset函数。
在类中,您可以提供__isset()
的实现,并根据设置的属性返回。
试试看: http://www.php.net/manual/en/language.oop5.overloading.php#language.oop5.overloading.members