2012-05-01 04:58:08 +08:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ZeroBin
|
|
|
|
*
|
|
|
|
* a zero-knowledge paste bin
|
|
|
|
*
|
|
|
|
* @link http://sebsauvage.net/wiki/doku.php?id=php:zerobin
|
|
|
|
* @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
|
|
|
|
* @license http://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
|
2015-11-10 04:39:42 +08:00
|
|
|
* @version 0.22
|
2012-05-01 04:58:08 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
spl_autoload_register('auto::loader');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* auto
|
|
|
|
*
|
|
|
|
* provides autoloading functionality
|
|
|
|
*/
|
|
|
|
class auto
|
|
|
|
{
|
|
|
|
/**
|
2016-07-06 20:12:14 +08:00
|
|
|
* includes file for given class name
|
2012-05-01 04:58:08 +08:00
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @static
|
2016-07-06 20:12:14 +08:00
|
|
|
* @param string $class_name
|
2012-05-01 04:58:08 +08:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public static function loader($class_name)
|
|
|
|
{
|
2012-08-26 06:49:11 +08:00
|
|
|
$filename = PATH . 'lib/' . str_replace('_', '/', $class_name) . '.php';
|
|
|
|
if(is_readable($filename)) {
|
|
|
|
return include $filename;
|
|
|
|
}
|
|
|
|
return false;
|
2012-05-01 04:58:08 +08:00
|
|
|
}
|
|
|
|
}
|