当前位置: 首页>>代码示例>>PHP>>正文


PHP Extension::addIncludePath方法代码示例

本文整理汇总了PHP中Extension::addIncludePath方法的典型用法代码示例。如果您正苦于以下问题:PHP Extension::addIncludePath方法的具体用法?PHP Extension::addIncludePath怎么用?PHP Extension::addIncludePath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Extension的用法示例。


在下文中一共展示了Extension::addIncludePath方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: get

    use TraitSingleton, TraitContainer, TraitFilepath;
    /**
     * @param $type
     * @throws ExtensionException
     */
    public static function get($type)
    {
        $type = strtolower($type);
        if ($file = FilesystemPath::find(self::addIncludePath(), $type . DIRECTORY_SEPARATOR . $type . '.php')) {
            require_once $file;
            $class_name = __NAMESPACE__ . '\\ExtensionType' . ucfirst($type);
            if (!class_exists($class_name)) {
                throw new ExtensionException(sprintf('Extension type "%s" not found!', ucfirst($type)));
            }
            $required_traits = ['Cyan\\Framework\\TraitSingleton'];
            $reflection_class = new ReflectionClass($class_name);
            foreach ($required_traits as $required_trait) {
                if (!in_array($required_trait, $reflection_class->getTraitNames())) {
                    throw new ExtensionException(sprintf('%s class must use %s', $class_name, $required_trait));
                }
            }
            if (!is_callable([$class_name, 'register'])) {
                throw new ExtensionException(sprintf('%s class must implement register method', $class_name));
            }
            return $class_name::getInstance();
        }
        throw new ExtensionException(sprintf('Extension "%s" not found!', ucfirst($type)));
    }
}
Extension::addIncludePath(__DIR__ . DIRECTORY_SEPARATOR . 'type');
开发者ID:cyan-framework,项目名称:library,代码行数:30,代码来源:extension.php


注:本文中的Extension::addIncludePath方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。