|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2007-10-24 14:19 UTC] info at davinci-tec dot de
Description: ------------ seems that Bug #39763 is back in PHP 5.2.4 i have the same behaviour as reported in the above bug report in 5.2.4. as of 5.2.1 parse_str works as expected, now with 5.2.4 there are again double applied magic quotes. Reproduce code: --------------- Bug #39763 Expected result: ---------------- Bug #39763 Actual result: -------------- Bug #39763 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 08:00:02 2025 UTC |
t.php: <?php $arr = array(); parse_str("this=%22probably+a+bug%22", $arr); echo $arr['this']; ?> [jani@localhost ~]$ src/build/php_5_2/sapi/cli/php -dmagic_quotes_gpc=1 t.php \"probably a bug\" And that's the expected result. I'm using latest CVS checkout of PHP_5_2 branch.