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 /** * @file * The PHP page that serves all page requests on a Drupal installa..

Decoded Output download

<?php 
 
/** 
 * @file 
 * The PHP page that serves all page requests on a Drupal installation. 
 * 
 * All Drupal code is released under the GNU General Public License. 
 * See COPYRIGHT.txt and LICENSE.txt files in the "core" directory. 
 */ 
 
use Drupal\Core\DrupalKernel; 
use Symfony\Component\HttpFoundation\Request; 
 
$autoloader = require_once 'autoload.php'; 
 
$kernel = new DrupalKernel('prod', $autoloader); 
 
$request = Request::createFromGlobals(); 
$response = $kernel->handle($request); 
$response->send(); 
 
$kernel->terminate($request, $response); 
 ?>

Did this file decode correctly?

Original Code

<?php

/**
 * @file
 * The PHP page that serves all page requests on a Drupal installation.
 *
 * All Drupal code is released under the GNU General Public License.
 * See COPYRIGHT.txt and LICENSE.txt files in the "core" directory.
 */

use Drupal\Core\DrupalKernel;
use Symfony\Component\HttpFoundation\Request;

$autoloader = require_once 'autoload.php';

$kernel = new DrupalKernel('prod', $autoloader);

$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();

$kernel->terminate($request, $response);

Function Calls

None

Variables

None

Stats

MD5 6bf202f7fc9fd8bdc96b33ac4e92923c
Eval Count 0
Decode Time 83 ms