index.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <?php
  2. /**
  3. * Laravel - A clean and classy framework for PHP web development.
  4. *
  5. * @package Laravel
  6. * @version 1.3.0
  7. * @author Taylor Otwell
  8. * @link http://laravel.com
  9. */
  10. $time = microtime(true);
  11. // --------------------------------------------------------------
  12. // Define the framework paths.
  13. // --------------------------------------------------------------
  14. define('BASE_PATH', realpath('../').'/');
  15. define('APP_PATH', realpath('../application').'/');
  16. define('SYS_PATH', realpath('../system').'/');
  17. define('CONFIG_PATH', APP_PATH.'config/');
  18. define('LIBRARY_PATH', APP_PATH.'libraries/');
  19. define('MODEL_PATH', APP_PATH.'models/');
  20. define('PACKAGE_PATH', APP_PATH.'packages/');
  21. define('PUBLIC_PATH', realpath(__DIR__.'/'));
  22. define('ROUTE_PATH', APP_PATH.'routes/');
  23. define('VIEW_PATH', APP_PATH.'views/');
  24. // --------------------------------------------------------------
  25. // Define the PHP file extension.
  26. // --------------------------------------------------------------
  27. define('EXT', '.php');
  28. // --------------------------------------------------------------
  29. // Load the classes used by the auto-loader.
  30. // --------------------------------------------------------------
  31. require SYS_PATH.'config'.EXT;
  32. require SYS_PATH.'arr'.EXT;
  33. // --------------------------------------------------------------
  34. // Register the auto-loader.
  35. // --------------------------------------------------------------
  36. spl_autoload_register(function($class)
  37. {
  38. $file = strtolower(str_replace('\\', '/', $class));
  39. if (array_key_exists($class, $aliases = System\Config::get('aliases')))
  40. {
  41. return class_alias($aliases[$class], $class);
  42. }
  43. foreach (array(BASE_PATH, MODEL_PATH, LIBRARY_PATH) as $directory)
  44. {
  45. if (file_exists($path = $directory.$file.EXT))
  46. {
  47. require $path;
  48. return;
  49. }
  50. }
  51. });
  52. // --------------------------------------------------------------
  53. // Set the error reporting and display levels.
  54. // --------------------------------------------------------------
  55. error_reporting(E_ALL | E_STRICT);
  56. ini_set('display_errors', 'Off');
  57. // --------------------------------------------------------------
  58. // Register the error handlers.
  59. // --------------------------------------------------------------
  60. set_exception_handler(function($e)
  61. {
  62. require_once SYS_PATH.'error'.EXT;
  63. System\Error::handle($e);
  64. });
  65. set_error_handler(function($number, $error, $file, $line)
  66. {
  67. require_once SYS_PATH.'error'.EXT;
  68. System\Error::handle(new ErrorException($error, $number, 0, $file, $line));
  69. });
  70. register_shutdown_function(function()
  71. {
  72. if ( ! is_null($error = error_get_last()))
  73. {
  74. require_once SYS_PATH.'error'.EXT;
  75. System\Error::handle(new ErrorException($error['message'], $error['type'], 0, $error['file'], $error['line']));
  76. }
  77. });
  78. // --------------------------------------------------------------
  79. // Set the default timezone.
  80. // --------------------------------------------------------------
  81. date_default_timezone_set(System\Config::get('application.timezone'));
  82. // --------------------------------------------------------------
  83. // Load the session.
  84. // --------------------------------------------------------------
  85. if (System\Config::get('session.driver') != '')
  86. {
  87. System\Session::load(System\Cookie::get('laravel_session'));
  88. }
  89. // --------------------------------------------------------------
  90. // Execute the global "before" filter.
  91. // --------------------------------------------------------------
  92. $response = System\Route\Filter::call('before', array(), true);
  93. // ----------------------------------------------------------
  94. // Execute the route function.
  95. // ----------------------------------------------------------
  96. if (is_null($response))
  97. {
  98. $route = System\Router::route(System\Request::method(), System\Request::uri());
  99. $response = (is_null($route)) ? System\Response::make(System\View::make('error/404'), 404) : $route->call();
  100. }
  101. else
  102. {
  103. $response = System\Response::prepare($response);
  104. }
  105. // ----------------------------------------------------------
  106. // Execute the global "after" filter.
  107. // ----------------------------------------------------------
  108. System\Route\Filter::call('after', array($response));
  109. // ----------------------------------------------------------
  110. // Stringify the response.
  111. // ----------------------------------------------------------
  112. $response->content = (string) $response->content;
  113. // --------------------------------------------------------------
  114. // Close the session.
  115. // --------------------------------------------------------------
  116. if (System\Config::get('session.driver') != '')
  117. {
  118. System\Session::close();
  119. }
  120. // --------------------------------------------------------------
  121. // Send the response to the browser.
  122. // --------------------------------------------------------------
  123. $response->send();
  124. echo (microtime(true) - $time) * 1000;