本文整理汇总了PHP中AutoLoader::addNamespace方法的典型用法代码示例。如果您正苦于以下问题:PHP AutoLoader::addNamespace方法的具体用法?PHP AutoLoader::addNamespace怎么用?PHP AutoLoader::addNamespace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AutoLoader
的用法示例。
在下文中一共展示了AutoLoader::addNamespace方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: startAutoLoader
private function startAutoLoader()
{
require_once 'AutoLoader.php';
$auto_loader = new AutoLoader();
$auto_loader->addNamespace('sweb', $this->sWebPath);
$auto_loader->addNamespace($this->pageNS, $this->pagePath);
$auto_loader->register();
}
示例2: _initialize
public final function _initialize()
{
$this->loader = new AutoLoader();
$this->loader->register();
// Register core namespace
$this->loader->addNamespace('\\XDaRk', dirname(__FILE__));
$this->core = Core::getInstance($this);
Core::$instanceNamespace = $GLOBALS[$this->name]['root_ns'];
Core::$instanceBaseDir = $GLOBALS[$this->name]['dir'];
Core::$instanceRootNSDir = $GLOBALS[$this->name]['dir'] . DIRECTORY_SEPARATOR . strtolower(Core::$instanceNamespace);
// Register instance namespace, this is a necessary step
$this->loader->addNamespace('\\' . Core::$instanceNamespace, Core::$instanceRootNSDir);
Core::$instanceClasses = File::phpClassesInDir(Core::$instanceRootNSDir);
Core::$classes = File::phpClassesInDir(dirname(__FILE__));
// Extenders
$this->xdRegisterNameSpaces();
Hooks::registerHooks($this, $this->Hooks);
}