From 935e16c8fc85755f5d63a2e1c9180453dd24f2bc Mon Sep 17 00:00:00 2001 From: jim winstead Date: Sat, 8 Dec 2001 21:21:50 +0000 Subject: [PATCH] parse_str: incorporate user notes git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@64292 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/strings.xml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/functions/strings.xml b/functions/strings.xml index 0489641c4a..c36c1147d3 100644 --- a/functions/strings.xml +++ b/functions/strings.xml @@ -1,5 +1,5 @@ - + String functions Strings @@ -1677,6 +1677,11 @@ if (ord($str) == 10) { the second parameter arr is present, variables are stored in this variable as an array elements instead. + + + Support for the optional second parameter was added in PHP 4.0.3. + + Using <function>parse_str</function> @@ -1691,6 +1696,10 @@ echo $second[1]; /* prints "another" */ + + See also set_magic_quotes_runtime + and urldecode. +