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


PHP FileUtils::file_exists_incpath方法代碼示例

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


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

示例1: getPluginCommand

 protected function getPluginCommand($plugin, $command, $params = array())
 {
     if (!FileUtils::file_exists_incpath('M/plugins/' . $plugin . '/commands/' . $command . '.php')) {
         if (!FileUtils::file_exists_incpath('M/plugins/' . $plugin)) {
             throw new Exception($plugin . ' plugin does not exist');
         } else {
             throw new Exception($plugin . ' does not have ' . $command . ' command');
         }
     }
     require_once 'M/plugins/' . $plugin . '/commands/' . $command . '.php';
     $className = $plugin . '_Command_' . $command;
     // Setting up options including Databases DSN
     Mreg::get('setup')->setUpEnv();
     // Executing
     $com = new $className();
     return $com;
 }
開發者ID:demental,項目名稱:m,代碼行數:17,代碼來源:plugin.php

示例2: resolve_class

 public static function resolve_class($class, $role, $init_function = null)
 {
     if (class_exists($class)) {
         return true;
     }
     $file = strtolower(str_replace('_', '/', $class)) . '.php';
     foreach (self::getPaths($role) as $path) {
         $full_path = $path . '/' . $file_name;
         if (FileUtils::file_exists_incpath($full_path)) {
             require_once self::resolve_file($file, $role);
             if ($init_function instanceof Closure) {
                 $init_function();
             }
             return true;
         }
     }
     throw new UnresolvedFileException("Could not load class {$class} in " . print_r(self::getPaths($role), true));
 }
開發者ID:demental,項目名稱:m,代碼行數:18,代碼來源:M.php

示例3: getTemplatePath

 public function getTemplatePath()
 {
     $folders = array_reverse($this->_config['tplfolders']);
     Log::error('Searching file ' . $this->_tplfile . ' in ' . print_r($folders, true));
     foreach ($folders as $folder) {
         if (FileUtils::file_exists_incpath($folder . $this->_tplfile . '.php')) {
             Log::error('Found file in ' . $folder);
             return $folder . $this->_tplfile . '.php';
         }
     }
     return false;
 }
開發者ID:demental,項目名稱:m,代碼行數:12,代碼來源:Mtpl.php


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