2
0

header.php 399 B

12345678910111213
  1. <?php
  2. setlocale(LC_TIME, 'fr_FR');
  3. date_default_timezone_set(TIME_ZONE);
  4. if(isset($_SESSION["debug"])){
  5. error_reporting(E_ALL);
  6. ini_set("display_errors", 1);
  7. }
  8. spl_autoload_register(function ($class_name) {
  9. (file_exists(DIR_PHP_CLASS.'/'.$class_name.'.class.php'))?
  10. require_once DIR_PHP_CLASS.'/'.$class_name.'.class.php' : '';
  11. });