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
<?php
$var1 = "cGF1bG8ubWFyY29u";
$var2 = "QGRyaWtleS5jb20uYnI=";
$b64 $var1 . $var2;
$decodedString =
base64_decode($b64);
echo "email:".$decodedString;
?>
Did this file decode correctly?
Original Code
<?php
$var1 = "cGF1bG8ubWFyY29u";
$var2 = "QGRyaWtleS5jb20uYnI=";
$b64 $var1 . $var2;
$decodedString =
base64_decode($b64);
echo "email:".$decodedString;
?>
Function Calls
None |
Stats
MD5 | a0247549d2a6ce6b91bbf0bff3e60ba8 |
Eval Count | 0 |
Decode Time | 62 ms |