|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests
Pull requests:
HistoryAllCommentsChangesGit/SVN commits
[2016-05-06 14:56 UTC] cmb@php.net
-Status: Open
+Status: Verified
[2016-05-06 14:56 UTC] cmb@php.net
[2016-07-05 14:57 UTC] nikic@php.net
[2016-07-05 14:57 UTC] nikic@php.net
-Status: Verified
+Status: Closed
[2016-07-06 05:47 UTC] davey@php.net
[2016-07-06 23:33 UTC] nikic@php.net
[2016-07-20 11:30 UTC] davey@php.net
[2016-07-20 11:30 UTC] davey@php.net
[2016-10-17 10:11 UTC] bwoebi@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 22:00:01 2025 UTC |
Description: ------------ As per documentation, base64_decode("\x0", true) base64_decode("\x0anything", true) shoud return FALSE. Instead, they return an empty string. Test script: --------------- var_export(base64_decode("\x0", true)); echo PHP_EOL; var_export(base64_decode("\x0anything", true)); Expected result: ---------------- false false Actual result: -------------- '' ''