当前位置: 首页>>代码示例>>PHP>>正文


PHP Loader::classExists方法代码示例

本文整理汇总了PHP中Loader::classExists方法的典型用法代码示例。如果您正苦于以下问题:PHP Loader::classExists方法的具体用法?PHP Loader::classExists怎么用?PHP Loader::classExists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Loader的用法示例。


在下文中一共展示了Loader::classExists方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getWriter

 /**
  * Get the instance of class "FileWriter" of the file
  * 
  * @param boolean $append
  * @return FileWriter
  */
 public function getWriter($append = false)
 {
     if (!Loader::classExists('FileWriter')) {
         Loader::load('FileWriter', 'utility');
     }
     $writer = new FileWriter($this->_path);
     return $writer;
 }
开发者ID:2626suke,项目名称:curryfw,代码行数:14,代码来源:file.php

示例2: createLayout

 /**
  * Create and return form layout element
  * 
  * @param string $layoutTagName
  * @return FormLayoutAbstract
  * @throws FileNotExistException
  */
 public function createLayout($layoutTagName)
 {
     $layoutClassName = NameManager::toClass('form_layout_' . trim(strtolower($layoutTagName)));
     if (!Loader::classExists($layoutClassName)) {
         $result = Loader::load($layoutClassName, 'html', true, false);
         if ($result == false) {
             $result = Loader::loadLibrary($layoutClassName);
             if ($result == false) {
                 $fileName = NameManager::toPhpFile($layoutClassName);
                 require_once 'exception/file_not_exist_exception.php';
                 throw new FileNotExistException($fileName);
             }
         }
     }
     $layoutInstance = new $layoutClassName($this);
     return $layoutInstance;
 }
开发者ID:2626suke,项目名称:curryfw,代码行数:24,代码来源:html_form.php

示例3: _connect

 /**
  * Create connection instance that extends PDO
  * 
  * @return DbAdapterAbstract
  * @throws Exception
  */
 protected static function _connect()
 {
     $snake = 'db_adapter_' . strtolower(self::$_config['type']);
     $adapterName = NameManager::toClass($snake);
     Loader::load($adapterName, 'db');
     if (!Loader::classExists($adapterName)) {
         throw new ClassUndefinedException($adapterName);
     }
     $instance = new $adapterName(self::$_config);
     return $instance;
 }
开发者ID:2626suke,项目名称:curryfw,代码行数:17,代码来源:db.php

示例4: _searchErrorHandler

 /**
  * Search error handler class and return its instance
  * 
  * @param string $subdir
  * @return ErrorHandlerStandard
  */
 protected function _searchErrorHandler($subdir)
 {
     $controllerDir = PathManager::getControllerDirectory();
     $dirs = array();
     if ($subdir != '') {
         $dirs = explode('/', trim($subdir, '/'));
     }
     $handler = null;
     $path = '';
     while (true) {
         $path = $controllerDir;
         if (count($dirs) > 0) {
             $path .= '/' . implode('/', $dirs);
         }
         if (file_exists($path . '/error_handler.php')) {
             require_once $path . '/error_handler.php';
             $className = NameManager::toClass(implode('_', $dirs) . '_error_handler');
             if (Loader::classExists($className)) {
                 $handler = new $className();
                 break;
             } else {
                 if (Loader::classExists('ErrorHandler')) {
                     $handler = new ErrorHandler();
                     break;
                 }
             }
         }
         if ($path == $controllerDir) {
             break;
         }
         array_pop($dirs);
     }
     if (!$handler instanceof ErrorHandlerStandard) {
         $handler = new ErrorHandlerStandard();
     }
     return $handler;
 }
开发者ID:2626suke,项目名称:curryfw,代码行数:43,代码来源:dispatcher.php

示例5: setException

 /**
  * Set the exception instance
  *
  * @param Exception $exception
  * @return void
  */
 public function setException($exception)
 {
     $this->exception = $exception;
     if (Loader::classExists('Logger') && self::$_logKey) {
         Logger::except($exception, self::$_logKey);
     }
 }
开发者ID:2626suke,项目名称:curryfw,代码行数:13,代码来源:error_handler_standard.php


注:本文中的Loader::classExists方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。