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 /** * Laravel - A PHP Framework For Web Artisans * * @package Laravel * ..

Decoded Output download

<?php 
 
/** 
 * Laravel - A PHP Framework For Web Artisans 
 * 
 * @package  Laravel 
 * @author   Taylor Otwell <[email protected]> 
 */ 
 
$uri = urldecode( 
    parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 
); 
 
// This file allows us to emulate Apache's "mod_rewrite" functionality from the 
// built-in PHP web server. This provides a convenient way to test a Laravel 
// application without having installed a "real" web server software here. 
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 
    return false; 
} 
 
require_once __DIR__.'/public/index.php'; 
 ?>

Did this file decode correctly?

Original Code

<?php

/**
 * Laravel - A PHP Framework For Web Artisans
 *
 * @package  Laravel
 * @author   Taylor Otwell <[email protected]>
 */

$uri = urldecode(
    parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);

// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
    return false;
}

require_once __DIR__.'/public/index.php';

Function Calls

None

Variables

None

Stats

MD5 e9c51a3bc3876a7b37b5df17c9da25c6
Eval Count 0
Decode Time 157 ms