2013年2月5日
摘要: 你以为mysql_query与mysqli_query是一样的参数吗?不,TNND恰恰是反过来的!查了好久 protected function query ( $sql ) { $sql = $this->sql_printf(func_get_args()); if (!($res = mysqli_query($this->conn, $sql))) { $this->sql_errcheck($sql); } if (is_resource($res)) { mysqli_free_result($res); } } protected function qu... 阅读全文
posted @ 2013-02-05 23:50 yangyh 阅读(256) 评论(0) 推荐(0) 编辑