Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php $var1 = "cGF1bG8ubWFyY29u"; $var2 = "QGRyaWtleS5jb20uYnI="; $b64 = $var1.$var2; ..
Decoded Output download
email:b'[email protected]'
Did this file decode correctly?
Original Code
<?php
$var1 = "cGF1bG8ubWFyY29u";
$var2 = "QGRyaWtleS5jb20uYnI=";
$b64 = $var1.$var2;
$decodedString = base64_decode($b64);
echo "email:" .$decodedString;
?>
Function Calls
base64_decode | 1 |
Stats
MD5 | 6ee2db9ad555dd145ef387a430c3d64f |
Eval Count | 0 |
Decode Time | 71 ms |