本文整理匯總了PHP中XoopsLoad::startAutoloader方法的典型用法代碼示例。如果您正苦於以下問題:PHP XoopsLoad::startAutoloader方法的具體用法?PHP XoopsLoad::startAutoloader怎麽用?PHP XoopsLoad::startAutoloader使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類XoopsLoad
的用法示例。
在下文中一共展示了XoopsLoad::startAutoloader方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __construct
/**
* __construct
* @param string|string[] $config fully qualified name of configuration file
* or configuration array
* @throws Exception
*/
private final function __construct($config)
{
if (!class_exists('XoopsLoad', false)) {
include __DIR__ . '/xoopsload.php';
}
if (is_string($config)) {
$yamlString = file_get_contents($config);
if ($yamlString === false) {
throw new \Exception('XoopsBaseConfig failed to load configuration.');
}
$loaderPath = $this->extractLibPath($yamlString) . '/vendor/autoload.php';
if (file_exists($loaderPath)) {
include_once $loaderPath;
}
self::$configs = Yaml::loadWrapped($yamlString);
\XoopsLoad::startAutoloader(self::$configs['lib-path']);
} elseif (is_array($config)) {
self::$configs = $config;
\XoopsLoad::startAutoloader(self::$configs['lib-path']);
}
if (!isset(self::$configs['lib-path'])) {
throw new \Exception('XoopsBaseConfig lib-path not defined.');
return;
}
\XoopsLoad::startAutoloader(self::$configs['lib-path']);
}