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 require "http.php"; require "debug_timer.php"; createServer(function($request, $res..
Decoded Output download
<?php
require "http.php";
require "debug_timer.php";
createServer(function($request, $response){
$response->writeHead(200, array("Content-Type" => "text/plain"));
$response->write("Hello World");
$response->end();
})->listen(8888);
?>
Did this file decode correctly?
Original Code
<?php
require "http.php";
require "debug_timer.php";
createServer(function($request, $response){
$response->writeHead(200, array("Content-Type" => "text/plain"));
$response->write("Hello World");
$response->end();
})->listen(8888);
Function Calls
None |
Stats
MD5 | 53efeb18ce863022ccee610c5997bb67 |
Eval Count | 0 |
Decode Time | 121 ms |