如何从codeigniter中的以下URL接收控制器中的值
http://localhost/directory/c_service/get_radius/lang=123
Run Code Online (Sandbox Code Playgroud)
控制器:
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'];`
}
Run Code Online (Sandbox Code Playgroud)
谢谢