PHP's base64_encode is returning a different string to the linux base64 command.
Why is this?
PHP:
$ php
<?php
echo base64_encode('test');
?>
dGVzdA==
Linux base64:
$ echo 'test' | base64
dGVzdAo=
|
|
|
Similarly for PHP:
|
|||||||||
|
|
open console in your browser, type
You have extra character in your input. And that is |
|||||||||||
|
|
When doing an echo it gives me this:
I'd guess you might have an included line-ending in the unix one as echo is probably appending a newline character even if you pipe it throuch to the base64 encode. |
|||
|
The linux |
|||
|
|
|
It is because Unix version encodes also the end of line. To receive similar effect in PHP you will have to do something like that:
which will output:
See the proof here: ideone.com/HorVD EDIT: As Charles mentioned,
|
|||||||
|
|
The same to above guys. In mac os X, just test this :
Or,
And,about the echo command, can see the tip: |
|||