diff options
author | Gustavo André dos Santos Lopes <cataphract@php.net> | 2010-12-10 07:59:34 +0000 |
---|---|---|
committer | Gustavo André dos Santos Lopes <cataphract@php.net> | 2010-12-10 07:59:34 +0000 |
commit | 8398646d0aface89bb5ff58bfdf4e6b78c80f02f (patch) | |
tree | 2b68a84097c9bb0a595f0b22b866b4013ee615d6 | |
parent | 1894d8df0b6c8c26485281686d975b42a0522a02 (diff) | |
download | php-git-8398646d0aface89bb5ff58bfdf4e6b78c80f02f.tar.gz |
- I had forgotten to commit UPGRADING (for enable_post_data_processing).
-rwxr-xr-x | UPGRADING | 19 |
1 files changed, 13 insertions, 6 deletions
@@ -8,17 +8,18 @@ UPGRADE NOTES - PHP X.Y 4. Changes made to existing methods 5. Changes made to existing classes 6. Deprecated -7. Extensions: +7. Removed +8. Extensions: a. moved out to PECL and actively maintained there b. no longer maintained c. with changed behaviour d. no longer possible to disable -8. Changes in SAPI support -9. Changes in INI directives -10. Syntax additions +9. Changes in SAPI support +10. Changes in INI directives 11. Syntax additions -12. Windows support -12. New in PHP X.Y: +12. Syntax additions +13. Windows support +14. New in PHP X.Y: a. New libraries b. New extensions c. New stream wrappers @@ -255,6 +256,12 @@ UPGRADE NOTES - PHP X.Y multibyte support, but may enable or disable it by zend.multibyte. It doesn't make a lot of sense to enable this option without ext/mbstring, because the most functionality is implemented by mbstrings callbacks. +- Added enable_post_data_reading, which is enable by default. When it's + disabled, the POST data is not read (and processed); the behavior is similar + to that of other request methods with body, like PUT. This allows reading the + raw POST data in multipart requests and read/process the POST data in a + stream fashion (through php://input), without having it copied in memory two/ + three times. ==================== 11. Syntax additions |