|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2004-08-23 17:04 UTC] cpuidle at gmx dot de
Description: ------------ Running this code: extract($_REQUEST); the resulting (global) variables are url-decoded. I found that $_REQUEST is already url-decoded and couldn't find any documentation? Reproduce code: --------------- . Expected result: ---------------- make clean when url-decoding is performed. Actual result: -------------- . PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 18 11:00:01 2025 UTC |
extract() doesn't perform urldecode() as proves this test case: <?php extract(array("a" => "%70")); echo $a; // %70 ?> $_REQUEST and similar variables already contain urldecoded data.