From 68654b855854ca19c1e4056dd2feec0bd0234804 Mon Sep 17 00:00:00 2001 From: jim winstead Date: Thu, 20 Dec 2001 22:19:32 +0000 Subject: [PATCH] rawurldecode: incorporate user note, fix formatting of example output git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@65784 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/url.xml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/functions/url.xml b/functions/url.xml index 797c3586ab..cabf6933f9 100644 --- a/functions/url.xml +++ b/functions/url.xml @@ -1,5 +1,5 @@ - + URL Functions URLs @@ -102,9 +102,14 @@ Returns a string in which the sequences with percent (%) signs followed by two hex digits have been replaced with literal characters. For example, the string - foo%20bar%40baz decodes into foo - bar@baz. + foo%20bar%40baz decodes into foo bar@baz. + + + rawurldecode does not decode plus symbols ('+') + into spaces. urldecode does. + + See also rawurlencode, urldecode,