运行php写的博客时在我的相册里面出现:
Fatal error: Call to a member function fetchAll() on a non-object in D:\wamp\www\Fly_Blog\Home\php\Image\Image.class.php on line 36。
该php文件第36行如下所示:
public function album_search($uid,$page,$count){
$this->connect();
$result=$this->con->query("select img_id,img_src,img_date from image where img_uid={$uid} limit {$page},{$count}");
return $result->fetchAll(PDO::FETCH_NUM);//PDO的返回二维数组 (第36行代码)
$this->con = null;
麻烦大神们帮我解决一下。