Codeigniter $ _GET模型?

时间:2012-10-07 21:52:21

标签: php codeigniter

我有一个我需要传递给PHP MySQL变量的URL参数。 可以说比如我的URL是:

www.facebook.com/?ref=logo 

通常它是$ _GET来获取ref的值。我将如何在CodeIgniter模型中执行此操作?根据我的理解,$ _GET不适用于CI?

2 个答案:

答案 0 :(得分:4)

它在输入类中。

 $ref = $this->input->get('ref');

来源:http://ellislab.com/codeigniter/user_guide/libraries/input.html

答案 1 :(得分:2)

在CodeIgniter中正常工作。您可以通过与POST值类似的方式访问它:

$ref = $this->input->get('ref', true);