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


PHP Framework::classLocate方法代碼示例

本文整理匯總了PHP中Framework::classLocate方法的典型用法代碼示例。如果您正苦於以下問題:PHP Framework::classLocate方法的具體用法?PHP Framework::classLocate怎麽用?PHP Framework::classLocate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Framework的用法示例。


在下文中一共展示了Framework::classLocate方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __autoload_modules

function __autoload_modules($class)
{
    $class_file = Framework::classLocate($class);
    if (file_exists($class_file)) {
        require_once $class_file;
    }
}
開發者ID:MrYogi,項目名稱:hasoffers-promotional-platform,代碼行數:7,代碼來源:bootstrap.php

示例2: __construct

 /**
  * Creates a Module and sets up the path and class name
  * @return Module
  */
 public function __construct($class = null)
 {
     if (!$class) {
         $class = get_class($this);
     }
     $this->class = $class;
     if ($this->class === __CLASS__) {
         $this->path = SERVER_DIR . '/core/';
     } else {
         $this->path = dirname(Framework::classLocate($this->class));
     }
 }
開發者ID:MrYogi,項目名稱:hasoffers-promotional-platform,代碼行數:16,代碼來源:Module.php

示例3: locate

 /**
  * Locates a resource
  */
 public function locate($actions, $options)
 {
     $class = array_shift($actions);
     if ($class == 'app') {
         $class_dir = SERVER_APP_DIR;
     } else {
         if ($class == 'core') {
             $class_dir = SERVER_CORE_DIR;
         } else {
             $class_file = Framework::classLocate($class);
             $class_dir = dirname($class_file);
         }
     }
     $this->write($class_dir . "\n");
 }
開發者ID:MrYogi,項目名稱:hasoffers-promotional-platform,代碼行數:18,代碼來源:Nth.php


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