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('DEBUG', 'on'); define('WEBPATH', realpath(__DIR__ . '/..')); // require WEBP..
Decoded Output download
<?php
define('DEBUG', 'on');
define('WEBPATH', realpath(__DIR__ . '/..'));
//
require WEBPATH . '/libs/lib_config.php';
$s = microtime(true);
$c = new Swoole\Client\TCP;
$c->connect('127.0.0.1', 9501, 0.5);
$c->send('hello');
var_dump($c->recv());
echo "use ".(microtime(true) - $s)."
"; ?>
Did this file decode correctly?
Original Code
<?php
define('DEBUG', 'on');
define('WEBPATH', realpath(__DIR__ . '/..'));
//
require WEBPATH . '/libs/lib_config.php';
$s = microtime(true);
$c = new Swoole\Client\TCP;
$c->connect('127.0.0.1', 9501, 0.5);
$c->send('hello');
var_dump($c->recv());
echo "use ".(microtime(true) - $s)."\n";
Function Calls
define | 1 |
Stats
MD5 | 009ef6a49336b29365308d9278aec790 |
Eval Count | 0 |
Decode Time | 101 ms |