| 123456789101112131415161718192021222324252627282930313233 | <?php/** * Laravel - A clean and classy framework for PHP web development. * * @package  Laravel * @version  2.0.0 Beta 1 * @author   Taylor Otwell <taylorotwell@gmail.com> * @link     http://laravel.com */define('LARAVEL_START', microtime(true));// --------------------------------------------------------------// The path to the application directory.// --------------------------------------------------------------$application = '../application';// --------------------------------------------------------------// The path to the Laravel directory.// --------------------------------------------------------------$laravel = '../laravel';// --------------------------------------------------------------// The path to the public directory.// --------------------------------------------------------------$public = __DIR__;// --------------------------------------------------------------// Launch Laravel.// --------------------------------------------------------------require $laravel.'/laravel.php';echo number_format((microtime(true) - LARAVEL_START) * 1000, 2);
 |