本文整理汇总了PHP中CRoute::getInstance方法的典型用法代码示例。如果您正苦于以下问题:PHP CRoute::getInstance方法的具体用法?PHP CRoute::getInstance怎么用?PHP CRoute::getInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CRoute
的用法示例。
在下文中一共展示了CRoute::getInstance方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: load
/**
* 自动加载
*/
public function load($className)
{
//优先使用映射集合
if (isset(self::$_loadMapp[$className])) {
return CLoader::import($className, self::$_loadMapp[$className]);
} else {
if (file_exists($path = APP_PATH . '/modules/' . CRoute::getInstance()->getModule() . '/controllers/' . $className . '.php')) {
return CLoader::importFile($path);
} else {
if (file_exists($path = APP_PATH . '/modules/' . CRoute::getInstance()->getModule() . '/classes/' . $className . '.php')) {
return CLoader::importFile($path);
} else {
if (file_exists($path = CODE_PATH . '/controllers/' . $className . '.php')) {
return CLoader::importFile($path);
} else {
if (file_exists($path = FRAME_PATH . '/components/' . $className . '.php')) {
return CLoader::importFile($path);
} else {
$list = array();
$importList = CConfig::getInstance()->load('IMPORT');
if (!empty($importList)) {
foreach ((array) $importList as $thisPath) {
$list[] = APP_PATH . '/' . str_replace(array('.', '*'), array('/', ''), $thisPath);
}
}
//查询指定的加载目录
foreach ($list as $val) {
if (file_exists($path = $val . $className . '.php')) {
return CLoader::importFile($path);
} else {
if (false !== strpos($className, '_')) {
//处理类名中的路径
$path = str_replace('_', '/', $className);
if (file_exists($path = trim($val, '/\\') . '/' . $path . '.php')) {
return CLoader::importFile($path);
}
}
}
}
}
}
}
}
}
}
示例2: _checkActionPreFix
/**
* 检查方法名前缀
*/
private function _checkActionPreFix($routeData)
{
$prefix = CConfig::getInstance()->load('ACTION_PREFIX');
if (!empty($prefix) && isset($routeData[1])) {
$routeData[1] = $prefix . $routeData[1];
}
//设置路由对象
$routeObject = CRoute::getInstance();
$routeObject->setController($routeData[0]);
$routeObject->setAction($routeData[1]);
$routeObject->setModule($routeData['m']);
//返回对象
return $routeObject;
}