����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.119.110.128 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/cbt.gltechlimited.com/vendor/markbaker/complex/classes/ |
Upload File : |
<?php namespace Complex; /** * * Autoloader for Complex classes * * @package Complex * @copyright Copyright (c) 2014 Mark Baker (https://github.com/MarkBaker/PHPComplex) * @license https://opensource.org/licenses/MIT MIT */ class Autoloader { /** * Register the Autoloader with SPL * */ public static function Register() { if (function_exists('__autoload')) { // Register any existing autoloader function with SPL, so we don't get any clashes spl_autoload_register('__autoload'); } // Register ourselves with SPL return spl_autoload_register(['Complex\\Autoloader', 'Load']); } /** * Autoload a class identified by name * * @param string $pClassName Name of the object to load */ public static function Load($pClassName) { if ((class_exists($pClassName, false)) || (strpos($pClassName, 'Complex\\') !== 0)) { // Either already loaded, or not a Complex class request return false; } $pClassFilePath = __DIR__ . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . str_replace(['Complex\\', '\\'], ['', '/'], $pClassName) . '.php'; if ((file_exists($pClassFilePath) === false) || (is_readable($pClassFilePath) === false)) { // Can't load return false; } require($pClassFilePath); } }