php中使用$_REQUEST需要注意的一個問題

來源:互聯網
上載者:User

問題
說起$_REQUEST,大家都知道的是它是$_GET和$_POST的集合。但是如果你有心的話,查一下文檔,會看到:

$_REQUEST

An associative array that by default contains the contents of $_GET, $_POST and $_COOKIE.

這裡說$_REQUEST預設是$_GET, $_POST, $_COOKIE的集合,結果我使用我本地的php查看了一下發現只有$_GET, $_POST, 沒有$_COOKIE!! 難道文檔是錯的?

答案
其實changelog中有給出解釋:

版本5.3以上,php.ini中有request_order屬性來設定$_REQUEST。查了下php.ini, request_order設定成為了GP(Get and Post)。

request_order的官網描述:

request_order string

This directive describes the order in which PHP registers GET, POST and Cookie variables into the _REQUEST array. Registration is done from left to right, newer values override older values.

If this directive is not set, variables_order is used for $_REQUEST contents.

Note that the default distribution php.ini files does not contain the 'C' for cookies, due to security concerns.

原來是G,P,C分別代表Get,Post,Cookie,5.3以上的版本request_order預設是設定成GP的,並不包含C,即$_REQUEST預設只包含$_GET和$_POST !! (所以官網文檔有一定的誤導)。

也同時說一下G,P,C的先後順序就是設定的array的覆蓋順序。

提醒下如果你是使用fpm-php實驗的話,改了php.ini後你需要重啟php-fpm

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.