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 code just recursively hacks together the README.md file based on the * ..
Decoded Output download
<?php
/**
* This code just recursively hacks together the README.md file based on the
* data/ directory and builds a table of contents at the top.
*/
define('DATADIR', dirname(__DIR__).'/data');
require_once "Util.php";
$compiled = \file_get_contents(DATADIR.'/header.md')."\n\n";
$compiled .= \implode(
"\n",
\ParagonIE\AwesomeAppsec\Util::compile(DATADIR)
);
\file_put_contents(dirname(__DIR__).'/README.md', $compiled);
?>
Did this file decode correctly?
Original Code
<?php
/**
* This code just recursively hacks together the README.md file based on the
* data/ directory and builds a table of contents at the top.
*/
define('DATADIR', dirname(__DIR__).'/data');
require_once "Util.php";
$compiled = \file_get_contents(DATADIR.'/header.md')."\n\n";
$compiled .= \implode(
"\n",
\ParagonIE\AwesomeAppsec\Util::compile(DATADIR)
);
\file_put_contents(dirname(__DIR__).'/README.md', $compiled);
Function Calls
None |
Stats
MD5 | a112ff115d20d18807326b64ca2a42f0 |
Eval Count | 0 |
Decode Time | 79 ms |