摘要:
2014年3月18日更新:从以前的使用原生代码来看,只需要将结果集关闭即可,即$this -> queryID -> close();。// 使用mysqli方式,修改DbMysqli.class.php,将query函数改为:public function query($str) { $this -> initConnect(false); if (!$this -> _linkID) { return false; } $this -> queryStr = $str; //释放前次的查询结果 ... 阅读全文
摘要:
参数传递的问题:在传递文件路径的参数时,因为路由模式把斜杠解析了,所以需要对参数进行encode,使用urlencode不行,后来尝试用base64_encode,解决问题; 阅读全文