我想ref
从看起来像这样的 URI 中获取价值http://localhost/project/?ref=6
现在我知道这$_GET['ref']
在 codeigniter 中不起作用。我试图通过设置来启用它,$config['allow_get_array'] = TRUE;
但它不起作用。
我在某处阅读了关于使用$this->input->get('ref')
但没有运气的信息。在使用它之前,我确实input
在 config.php 中加载了库。
注意:我想在模型中访问这个值
在 config.php 中添加
$config['uri_protocol'] = "PATH_INFO";
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-?';
并评论了现有的$config['uri_protocol'] = 'REQUEST_URI';
和$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
控制器代码为:
parse_str($_SERVER['QUERY_STRING'], $_GET);
$ref = $this->security->xss_clean($_GET['ref']);
log_message('info','>>>>>>>>>>>>>>>>>>enter email_invites method::'.$ref);
但我仍然没有得到任何价值,并且不知何故我没有看到任何日志消息。