欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

PHP中如何判断一个对象是否为空

如下代码,从数据库返回一条记录,如何判断$tmp中是否有记录存在(该语句返回的是对象)

  1. $tmp = $this->db->get_where('wen_notify', array('user_id' => $this->wen_auth->get_user_id()),1 )->result();

empty(get_object_vars(object))

或者

if (count((array)$obj)){  }

$arr = (array)$obj;
if (empty($arr)) {
// do stuff
}


class User {
public $name;
public $age;

public function __construct($name='', $age='')
{
$this->name = $name;
$this->age = $age;
}

public function isEmpty()
{
return empty($this->name) && empty($this->age);
}

}

来自 http://ask.5lulu.com/question/etn6g5pytp85ca.html


普通分类: