diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-11-18 12:11:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-11-18 22:53:48 +0300 |
commit | 05ea79929aa099d25b543f4a86db721f5f7e700e (patch) | |
tree | ea79ae74ce0aef63f5503a5c4f4258e622be354a /tools/php-sqllint/src/phpsqllint/Autoloader.php | |
parent | 61e6b22b12cb66bd3bb6bc1268228ea7d5e2519b (diff) | |
download | hercules-05ea79929aa099d25b543f4a86db721f5f7e700e.tar.gz hercules-05ea79929aa099d25b543f4a86db721f5f7e700e.tar.bz2 hercules-05ea79929aa099d25b543f4a86db721f5f7e700e.tar.xz hercules-05ea79929aa099d25b543f4a86db721f5f7e700e.zip |
Add phpsqllint for check sql queries
Diffstat (limited to 'tools/php-sqllint/src/phpsqllint/Autoloader.php')
-rw-r--r-- | tools/php-sqllint/src/phpsqllint/Autoloader.php | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/tools/php-sqllint/src/phpsqllint/Autoloader.php b/tools/php-sqllint/src/phpsqllint/Autoloader.php new file mode 100644 index 000000000..6811b82f1 --- /dev/null +++ b/tools/php-sqllint/src/phpsqllint/Autoloader.php @@ -0,0 +1,57 @@ +<?php +/** + * Part of php-sqllint + * + * PHP version 5 + * + * @category Tools + * @package PHP-SQLlint + * @author Christian Weiske <cweiske@cweiske.de> + * @copyright 2014 Christian Weiske + * @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3 + * @link http://cweiske.de/php-sqllint.htm + */ +namespace phpsqllint; + +/** + * Class autoloader, PSR-0 compliant. + * + * @category Tools + * @package PHP-SQLlint + * @author Christian Weiske <cweiske@cweiske.de> + * @copyright 2014 Christian Weiske + * @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3 + * @version Release: @package_version@ + * @link http://cweiske.de/php-sqllint.htm + */ +class Autoloader +{ + /** + * Load the given class + * + * @param string $class Class name + * + * @return void + */ + public function load($class) + { + $file = strtr($class, '_\\', '//') . '.php'; + if (stream_resolve_include_path($file)) { + include $file; + } + } + + /** + * Register this autoloader + * + * @return void + */ + public static function register() + { + set_include_path( + get_include_path() . PATH_SEPARATOR . __DIR__ . '/../' + ); + spl_autoload_register(array(new self(), 'load')); + } +} +?>
\ No newline at end of file |