我在我的 php 应用程序中使用simpleSQL - PDO类,
并通过以下代码使用:
$where['username']=$_POST['username'];
$where['password']=md5($_POST['password']);
$DB = new DB();
$res=$DB->buildQuery('tbl_admin',$where);
它在 localhost 中运行良好,但在在线服务器中出现以下错误:
Fatal error: Using $this when not in object context in DB.php on line 230
行号 DB类中的230是:
$ item = $ this- > instance- > quote ($ this- > escape ($ item));
我的问题在哪里?