加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

php – Codeigniter Controller返回上一页

发布时间:2020-12-13 13:49:33 所属栏目:PHP教程 来源:网络整理
导读:我想问你怎么能在控制器代码的末尾代替$this- load- view(‘some_view.php’),将用户返回到调用控制器方法的页面?简单的return语句不起作用. 即. public function someMethod($IDCustomer) { $this-Some_modal-persist($IDCustomer); // how to return to p
我想问你怎么能在控制器代码的末尾代替$this-> load-> view(‘some_view.php’),将用户返回到调用控制器方法的页面?简单的return语句不起作用.

即.

public function someMethod($IDCustomer) {

     $this->Some_modal->persist($IDCustomer);   
     // how to return to previous page instead of line after?
     // i've used $this->load->view('someView.php');
}
这应该有助于 http://www.codeigniter.com/user_guide/libraries/user_agent.html
$this->load->library('user_agent');
if ($this->agent->is_referral())
{
    echo $this->agent->referrer();
}

或直接PHP:

redirect($_SERVER['HTTP_REFERER']);

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读