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 define('APP_ROOT', __dir__ . '/app/'); $app = \Gene\Application::getInstance(); $a..

Decoded Output download


<?php
define('APP_ROOT', __dir__ . '/app/');

$app = \Gene\Application::getInstance();
$app
    ->load("router.ini.php")
    ->load("config.ini.php")
    ->run();


<?php
$router = new \Gene\Router();
$router->clear()
       ->get("/test","\Controllers\Index@test");

:
<?php
namespace Controllers;
class Index extends \Gene\Controller 
{
	function test()
	{
		echo 'test';
	}  
} ?>

Did this file decode correctly?

Original Code


<?php
define('APP_ROOT', __dir__ . '/app/');

$app = \Gene\Application::getInstance();
$app
    ->load("router.ini.php")
    ->load("config.ini.php")
    ->run();


<?php
$router = new \Gene\Router();
$router->clear()
       ->get("/test","\Controllers\Index@test");

:
<?php
namespace Controllers;
class Index extends \Gene\Controller 
{
	function test()
	{
		echo 'test';
	}  
}

Function Calls

None

Variables

None

Stats

MD5 686de759398cbca0299ab9bf0f87692a
Eval Count 0
Decode Time 106 ms