gpt4 book ai didi

codeigniter url参数交换

转载 作者:行者123 更新时间:2023-12-01 11:33:22 25 4
gpt4 key购买 nike

我当前的网址是 http://localhost/ci/test_test/test/12/abc

12 是我的 id,abc 是要在函数测试中传递的值

现在我希望我的 url 看起来像这样 http://localhost/ci/test_test/test/id/12/val/abc函数可能知道在 id 关键字之后是 id,在 value 关键字之后是值

public function test($id="",$code=""){ 
$data['id']=$id;
$data['code']=$code;
$this->load->view('welcome_message',$data);
}

最佳答案

在你的 routes.php 中,像这样设置你的 url :

$route['test_test/test/id/(:num)/val/(:any)'] = "path/to/your_controller/$1/$2";

和你的 Controller :

public function your_controller($id="",$val){
//...
}

关于codeigniter url参数交换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30118662/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com