Autoload::autoload_library PHP 메소드

autoload_library() 공개 정적인 메소드

public static autoload_library ( $name )
    public static function autoload_library($name)
    {
        $file = __DIR__ . '/' . str_replace('\\', DIRECTORY_SEPARATOR, $name) . '.php';
        if (file_exists($file)) {
            include $file;
        }
    }