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 /** Simple autoloader */ namespace FSphinx; function autoload($class) { $file..
Decoded Output download
<?php
/** Simple autoloader */
namespace FSphinx;
function autoload($class)
{
$file = dirname(__FILE__) . DIRECTORY_SEPARATOR . str_replace('\', DIRECTORY_SEPARATOR, $class) . '.php';
if (file_exists($file)) {
require($file);
return true;
}
return false;
}
spl_autoload_register('\FSphinx\autoload');
?>
Did this file decode correctly?
Original Code
<?php
/** Simple autoloader */
namespace FSphinx;
function autoload($class)
{
$file = dirname(__FILE__) . DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR, $class) . '.php';
if (file_exists($file)) {
require($file);
return true;
}
return false;
}
spl_autoload_register('\\FSphinx\\autoload');
Function Calls
None |
Stats
MD5 | 152c94c26d3f7ee31848d6860f6bde05 |
Eval Count | 0 |
Decode Time | 91 ms |