gpac.php 285 B

12345678910
  1. <?php
  2. define('GPAC_BASE_PATH', realpath(dirname(__FILE__)));
  3. spl_autoload_register(function($class) {
  4. $file = GPAC_BASE_PATH . DIRECTORY_SEPARATOR . str_replace("\\", DIRECTORY_SEPARATOR, strtolower($class)) . ".php";
  5. if (file_exists($file))
  6. require_once $file;
  7. });