當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CRoute::getInstance方法代碼示例

本文整理匯總了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);
                                     }
                                 }
                             }
                         }
                     }
                 }
             }
         }
     }
 }
開發者ID:seiven,項目名稱:ACEAdminForMyframework,代碼行數:48,代碼來源:CLoader.php

示例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;
 }
開發者ID:seiven,項目名稱:ACEAdminForMyframework,代碼行數:17,代碼來源:CRequest.php


注:本文中的CRoute::getInstance方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。