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 RFCDate() { /* COMMENT IT $tz = date("Z"); $tzs = ($tz < 0) ?..

Decoded Output download

<?  function RFCDate() { 
/* 
COMMENT IT 
        $tz = date("Z"); 
        $tzs = ($tz < 0) ? "-" : "+"; 
        $tz = abs($tz); 
        $tz = ($tz/3600)*100 + ($tz%3600)/60; 
        $result = sprintf("%s %s%04d", date("D, j M Y H:i:s"), $tzs, $tz); 
END COMMENT 
*/ 
        $result = date("r"); // RFC 2822 formatted date 
        return $result; 
} ?>

Did this file decode correctly?

Original Code

function RFCDate() {
/*
COMMENT IT
        $tz = date("Z");
        $tzs = ($tz < 0) ? "-" : "+";
        $tz = abs($tz);
        $tz = ($tz/3600)*100 + ($tz%3600)/60;
        $result = sprintf("%s %s%04d", date("D, j M Y H:i:s"), $tzs, $tz);
END COMMENT
*/
        $result = date("r"); // RFC 2822 formatted date
        return $result;
}

Function Calls

None

Variables

None

Stats

MD5 f1ba2e150095ab024352408e9590a751
Eval Count 0
Decode Time 72 ms