致命错误:在非对象上调用成员函数 base_url()
当我从支付网关重定向到站点时出现上述错误,因此包含所有脚本的头文件没有被加载
我尝试使用$ci =& get_instance();
但仍然给出同样的问题
public function payment_success() {
$this->load->model("bidding_m");
$this->load->model("admin_setting_m");
$this->load->model("channel_partners_m"); //call model functions to update the tables
$this->load->config('payu_config', TRUE);
$this->config = $this->config->item('payu_config');
//echo base_url();
exit;
}