|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-09-06 12:30 UTC] pajoye@php.net
[2011-09-06 12:30 UTC] pajoye@php.net
[2011-09-07 01:37 UTC] laruence@php.net
[2012-06-24 22:33 UTC] nikic@php.net
[2015-08-02 14:53 UTC] cmb@php.net
-Status: Open
+Status: Not a bug
-Assigned To:
+Assigned To: cmb
[2015-08-02 14:53 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 22:00:01 2025 UTC |
Description: ------------ base64_decode fails (tested on windows and linux) using the following code (comes from a phpt for zlib) Test script: --------------- <?php $original = str_repeat("hallo php",4096); $packed = gzencode($original); echo strlen($packed)." ".strlen($original). "\n"; if (strcmp($original, gzdecode($packed)) == 0) echo "Strings are equal"; ?> Expected result: ---------------- 118 36864 Strings are equal Actual result: -------------- 118 36864