|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2014-09-29 12:49 UTC] leigh@php.net
-Status: Open
+Status: Not a bug
[2014-09-29 12:49 UTC] leigh@php.net
[2014-09-30 03:30 UTC] kabir dot pust at gmail dot com
[2014-09-30 07:04 UTC] leigh@php.net
-Block user comment: No
+Block user comment: Yes
[2014-09-30 07:04 UTC] leigh@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 03:00:01 2025 UTC |
Description: ------------ <?php echo $a = urlencode(base64_encode('fazlul')).' '; echo $str = @iconv('UTF-8', 'UTF-8//IGNORE', $a).' '; echo $c = urldecode(base64_decode($str)); echo "\r\n\r\n"; echo $a = urlencode(base64_encode('masud')).' ';//same for karim echo $str = @iconv('UTF-8', 'UTF-8//IGNORE', $a).' '; echo $c = urldecode(base64_decode($str)); Test script: --------------- Same process but the output is different. Expected result: ---------------- input: fazlul output: fazlul But, input: masud output: masud Actual result: -------------- input: fazlul output: fazlul But, input: masud output: masud7