org\Transform::init PHP Method

init() private static method

初始化解析驱动
private static init ( string $type )
$type string 驱动类型
    private static function init($type)
    {
        if (!isset(self::$handler[$type])) {
            $class = '\\org\\transform\\driver\\' . ucwords($type);
            self::$handler[$type] = new $class();
        }
    }