diff options
author | Michael Wallner <mike@php.net> | 2014-01-17 12:18:16 +0100 |
---|---|---|
committer | Michael Wallner <mike@php.net> | 2014-01-17 12:18:16 +0100 |
commit | 03386d178626e3ce1ff9afcf53fa7fbb4f8a2b87 (patch) | |
tree | f4e68736b4498e559d732e4e350ae24c55aa306a | |
parent | b58dbefba02aeebc840ea0c4058f5d7b2e3368d1 (diff) | |
download | php-git-03386d178626e3ce1ff9afcf53fa7fbb4f8a2b87.tar.gz |
Clarify always_populate_raw_post_data situation in 5.6
-rw-r--r-- | NEWS | 7 | ||||
-rwxr-xr-x | UPGRADING | 14 |
2 files changed, 7 insertions, 14 deletions
@@ -16,9 +16,10 @@ PHP NEWS (Gustavo) . Uploads equal or greater than 2GB in size are now accepted. (Ralf Lang, Mike) - . Reduced POST data memory usage by 200-300%. Removed INI setting - always_populate_raw_post_data and the $HTTP_RAW_POST_DATA global - variable. (Mike) + . Reduced POST data memory usage by 200-300%. Changed INI setting + always_populate_raw_post_data to throw a deprecation warning when enabling + and to accept -1 for never populating the $HTTP_RAW_POST_DATA global + variable, which will be the default in future PHP versions. (Mike) . Implemented dedicated syntax for variadic functions (RFC: https://wiki.php.net/rfc/variadics). (Nikita) . Fixed bug #50333 Improving multi-threaded scalability by using @@ -20,16 +20,6 @@ PHP X.Y UPGRADE NOTES 1. Backward Incompatible Changes ======================================== -- Core: - Removed $HTTP_RAW_POST_DATA global variable. Restore backwards compatibility - by: - <?php - global $HTTP_RAW_POST_DATA; - if (!isset($HTTP_RAW_POST_DATA)) { - $HTTP_RAW_POST_DATA = file_get_contents("php://input"); - } - ?> - - JSON: json_decode() no longer accepts non-lowercase variants of lone JSON true, false or null values. For example, True or FALSE will now cause json_decode to @@ -148,7 +138,9 @@ PHP X.Y UPGRADE NOTES ======================================== - Core: - Removed always_populate_raw_post_data. + Changed always_populate_raw_post_data to throw a deprecation warning when + enabled and to recognize ohe value -1 for never populating the global + $HTTP_RAW_POST_DATA variable, which will be default in future PHP versions. ======================================== 11. Other Changes |