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 /* * This file is part of App Project. * * For the full copyright and license inf..
Decoded Output download
<?php
/*
* This file is part of App Project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
if (isset($_SERVER['ENVIRONMENT']) && $_SERVER['ENVIRONMENT'] === 'development') {
error_reporting(-1);
ini_set('display_errors', 'On');
} else {
error_reporting(\E_ALL & ~\E_DEPRECATED & ~\E_NOTICE & ~\E_STRICT & ~\E_USER_DEPRECATED & ~\E_USER_NOTICE);
ini_set('display_errors', 'Off');
}
date_default_timezone_set('UTC');
//set_time_limit(30);
?>
Did this file decode correctly?
Original Code
<?php
/*
* This file is part of App Project.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
if (isset($_SERVER['ENVIRONMENT']) && $_SERVER['ENVIRONMENT'] === 'development') {
error_reporting(-1);
ini_set('display_errors', 'On');
} else {
error_reporting(\E_ALL & ~\E_DEPRECATED & ~\E_NOTICE & ~\E_STRICT & ~\E_USER_DEPRECATED & ~\E_USER_NOTICE);
ini_set('display_errors', 'Off');
}
date_default_timezone_set('UTC');
//set_time_limit(30);
Function Calls
ini_set | 1 |
error_reporting | 1 |
date_default_timezone_set | 1 |
Stats
MD5 | 1beb636f969e7ae8cd9762f2782282df |
Eval Count | 0 |
Decode Time | 104 ms |