Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
function get_hidden_email($customer_email) { if (!$customer_email) { ..
Decoded Output download
<? function get_hidden_email($customer_email)
{
if (!$customer_email) {
return $customer_email;
}
$start = substr($customer_email, 0, 7);
$finish = substr($customer_email, -8);
$customer_email = $start . "*****" . $finish;
return $customer_email;
} ?>
Did this file decode correctly?
Original Code
function get_hidden_email($customer_email)
{
if (!$customer_email) {
return $customer_email;
}
$start = substr($customer_email, 0, 7);
$finish = substr($customer_email, -8);
$customer_email = $start . "\52\52\52\x2a\x2a" . $finish;
return $customer_email;
}
Function Calls
None |
Stats
MD5 | fcd80718f6363674b15017bfaa421f7f |
Eval Count | 0 |
Decode Time | 39 ms |