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 use Pagekit\Twig\TwigCache; use Pagekit\Twig\TwigLoader; use Pagekit\View\Loader\Fi..
Decoded Output download
<?php
use Pagekit\Twig\TwigCache;
use Pagekit\Twig\TwigLoader;
use Pagekit\View\Loader\FilesystemLoader;
use Symfony\Component\Templating\Loader\FilesystemLoader as SymfonyFilesystemLoader;
return [
'name' => 'view/twig',
'main' => function ($app) {
$app['twig'] = function ($app) {
$twig = new Twig_Environment(new TwigLoader(isset($app['locator']) ? new FilesystemLoader($app['locator']) : new SymfonyFilesystemLoader([])), [
'cache' => new TwigCache($app['path.cache']),
'auto_reload' => true,
'debug' => $app['debug'],
]);
if (isset($app['debug']) && $app['debug']) {
$twig->addExtension(new Twig_Extension_Debug());
}
return $twig;
};
},
'autoload' => [
'Pagekit\Twig\' => 'src'
]
];
?>
Did this file decode correctly?
Original Code
<?php
use Pagekit\Twig\TwigCache;
use Pagekit\Twig\TwigLoader;
use Pagekit\View\Loader\FilesystemLoader;
use Symfony\Component\Templating\Loader\FilesystemLoader as SymfonyFilesystemLoader;
return [
'name' => 'view/twig',
'main' => function ($app) {
$app['twig'] = function ($app) {
$twig = new Twig_Environment(new TwigLoader(isset($app['locator']) ? new FilesystemLoader($app['locator']) : new SymfonyFilesystemLoader([])), [
'cache' => new TwigCache($app['path.cache']),
'auto_reload' => true,
'debug' => $app['debug'],
]);
if (isset($app['debug']) && $app['debug']) {
$twig->addExtension(new Twig_Extension_Debug());
}
return $twig;
};
},
'autoload' => [
'Pagekit\\Twig\\' => 'src'
]
];
Function Calls
None |
Stats
MD5 | df910fb0119c3c0bc049740ac8e49cf2 |
Eval Count | 0 |
Decode Time | 87 ms |