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 date_default_timezone_set('PRC'); header("Content-type: text/html; charset=UTF-8"); ..

Decoded Output download

<?php
date_default_timezone_set('PRC');
header("Content-type: text/html; charset=UTF-8");
define('APP_ROOT', __dir__ . '/app/');

$path = '';
if (isset($_SERVER['argv'][1])) {
    $path = $_SERVER['argv'][1];
} else {
    exit('This script is run as CLI');
}

$app = new Gene\Application();
$app
	->autoload(APP_ROOT)
	->load("router.ini.php")
	->load("config.ini.php")
	->run('get', $path);
    
 ?>

Did this file decode correctly?

Original Code

<?php
date_default_timezone_set('PRC');
header("Content-type: text/html; charset=UTF-8");
define('APP_ROOT', __dir__ . '/app/');

$path = '';
if (isset($_SERVER['argv'][1])) {
    $path = $_SERVER['argv'][1];
} else {
    exit('This script is run as CLI');
}

$app = new Gene\Application();
$app
	->autoload(APP_ROOT)
	->load("router.ini.php")
	->load("config.ini.php")
	->run('get', $path);
    

Function Calls

date_default_timezone_set 1

Variables

None

Stats

MD5 509ac8e45e2584ce1b2a806722dc3f2a
Eval Count 0
Decode Time 84 ms