gpt4 book ai didi

codeigniter 从 url 获取值

转载 作者:行者123 更新时间:2023-12-04 02:33:15 26 4
gpt4 key购买 nike

我如何从 codeigniter 中的以下 URL 接收 Controller 中的值

http://localhost/directory/c_service/get_radius/lang=123

Controller :
class C_service extends CI_Controller {
function __construct()
{
parent::__construct();
}

public function get_radius()
{

i need to get the vLUE 123 here
like,
`$value=$get['lang'];`

}

谢谢

最佳答案

您可以使用:

<?php
$this->input->get('lang', TRUE);
?>

TRUE 是打开 XSS 过滤,您确实希望打开它。

退房 https://www.codeigniter.com/user_guide/libraries/input.html了解更多信息。

关于codeigniter 从 url 获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9666433/

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