|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2018-12-11 20:44 UTC] anubas at hotmail dot com
Description:
------------
Problem: $x != $z in the test script below.
Test script:
---------------
<?php
$x = 'This is a string';
$y = base64_encode($x);
$z = base64_decode($y);
if ($x != $z) {
print 'base64 encoding/decoding broken';
}
Expected result:
----------------
$x == $z
Actual result:
--------------
$x != $z
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 18:00:01 2025 UTC |
Might be relevant: $ cc -v FreeBSD clang version 6.0.0 (tags/RELEASE_600/final 326565) (based on LLVM 6.0.0)