diff options
| author | Michael Wallner <mike@php.net> | 2013-09-19 15:40:10 +0200 |
|---|---|---|
| committer | Michael Wallner <mike@php.net> | 2013-09-19 15:41:04 +0200 |
| commit | 11d60447f9f22944dd08d8dacba1230fc4caabd8 (patch) | |
| tree | 2e3cc5ccf1548cc1160dd3806ce0c91499fc0b48 | |
| parent | b6d0cb05533d1c7a8f0cce5cffc20352669a2506 (diff) | |
| download | php-git-11d60447f9f22944dd08d8dacba1230fc4caabd8.tar.gz | |
add note about request_body and php://input
| -rw-r--r-- | main/SAPI.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/SAPI.h b/main/SAPI.h index 5525a2aabd..928fca95da 100644 --- a/main/SAPI.h +++ b/main/SAPI.h @@ -85,6 +85,7 @@ typedef struct { char *path_translated; char *request_uri; + /* Do not use request_body directly, but the php://input stream wrapper instead */ struct _php_stream *request_body; const char *content_type; |
