From c24e9b3c30945647e7b4943b24dc594c386976ea Mon Sep 17 00:00:00 2001 From: Peter Cowburn Date: Mon, 13 Apr 2015 14:48:44 +0000 Subject: [PATCH] add information about which content-types are actually decoded for $_POST (patch by Lukas Kahwe Smith) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@336516 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/predefined/variables/post.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/language/predefined/variables/post.xml b/language/predefined/variables/post.xml index eeb60ce1b3..092020f2ec 100644 --- a/language/predefined/variables/post.xml +++ b/language/predefined/variables/post.xml @@ -12,7 +12,8 @@ &reftitle.description; An associative array of variables passed to the current script - via the HTTP POST method. + via the HTTP POST method when using application/x-www-form-urlencoded + or multipart/form-data as the HTTP Content-Type in the request.