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 $autoloadFiles = array( __DIR__ . '/../vendor/autoload.php', __DIR__ . '/....

Decoded Output download

<?php

$autoloadFiles = array(
    __DIR__ . '/../vendor/autoload.php',
    __DIR__ . '/../../../autoload.php',
);

$loader = null;
foreach ($autoloadFiles as $autoloadFile) {
    if (file_exists($autoloadFile)) {
        $loader = require $autoloadFile;
        break;
    }
}

if (!$loader) {
    exit('Autoloader not found. Try installing dependencies using composer install.');
}

$app = new \Sstalle\php7cc\Infrastructure\Application();
$app->run();
 ?>

Did this file decode correctly?

Original Code

<?php

$autoloadFiles = array(
    __DIR__ . '/../vendor/autoload.php',
    __DIR__ . '/../../../autoload.php',
);

$loader = null;
foreach ($autoloadFiles as $autoloadFile) {
    if (file_exists($autoloadFile)) {
        $loader = require $autoloadFile;
        break;
    }
}

if (!$loader) {
    exit('Autoloader not found. Try installing dependencies using composer install.');
}

$app = new \Sstalle\php7cc\Infrastructure\Application();
$app->run();

Function Calls

None

Variables

None

Stats

MD5 b01d17fab1f2a87ca63c900c02100c76
Eval Count 0
Decode Time 86 ms