|
本帖最后由 cxzlr 于 2012-4-16 21:17 编辑
偶是这样配置的 ,我想在某个条件下关库
PHP复制代码
$autoload['libraries'] = array('database') //自动装载库
class User extends CI_Controller {
function __construct ()
{
parent ::__construct ();
}
function test (){
if(true){
$this->db->close();
}
$query=$this->db->query("select * from member");
if($query->num_rows()>0){
print_r($query->row_array());
}
}
}
复制代码
print_r(); 竟然有值,查到了结果,而我查之前,关库了,为何还能查,还不报错。 |
|