2014-10-31 137 views

回答

20

我從來沒有用過笨,但爲了這個,我檢查$_SERVER['REQUEST_METHOD']

看着the docs也許是這樣的:

if ($this->input->server('REQUEST_METHOD') == 'GET') 
    //its a get 
else if ($this->input->server('REQUEST_METHOD') == 'POST') 
    //its a post 

如果你打算使用它了很多,然後它的簡單推出自己的isGet()功能吧。

3

對於笨3用戶:the docs state輸入類有一個函數來獲取請求方法:

echo $this->input->method(TRUE); // Outputs: POST 
echo $this->input->method(FALSE); // Outputs: post 
echo $this->input->method(); // Outputs: post 
+1

值得注意的,這是一個CI3功能,並不會工作CI2。 – JamesNZ 2016-07-12 01:47:42

+0

我已經更新了答案 – 2017-05-09 15:08:57

相關問題