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_license($license) { if (!$license) { return..

Decoded Output download

<?  function get_hidden_license($license) 
    { 
        if (!$license) { 
            return $license; 
        } 
        $start = substr($license, 0, 7); 
        $finish = substr($license, -7); 
        $license = "License*****Hiden"; 
        return $license; 
    } ?>

Did this file decode correctly?

Original Code

function get_hidden_license($license)
    {
        if (!$license) {
            return $license;
        }
        $start = substr($license, 0, 7);
        $finish = substr($license, -7);
        $license = "\x4c\151\x63\145\x6e\x73\x65\x2a\x2a\x2a\52\x2a\110\x69\144\145\156";
        return $license;
    }

Function Calls

None

Variables

None

Stats

MD5 02b9059daf785f3f9a1aeda24abf5a47
Eval Count 0
Decode Time 39 ms