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


PHP FrontController::instance方法代码示例

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


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

示例1: getInstance

 /**
  * Singleton method that returns a unique instance of the class.
  *
  * @return FrontController
  */
 private static function getInstance()
 {
     if (!self::$instance instanceof self) {
         self::$instance = new self();
     }
     return self::$instance;
 }
开发者ID:googlecode-mirror,项目名称:balrog,代码行数:12,代码来源:FrontController.class.php

示例2: getInstance

 public static function getInstance()
 {
     if (self::$instance == false) {
         self::$instance = new FrontController();
     }
     return self::$instance;
 }
开发者ID:ruxon,项目名称:framework,代码行数:7,代码来源:FrontController.class.php

示例3: getInstance

 /**
  * Returns an instance of FrontController object
  * @return FrontController
  */
 public static function getInstance()
 {
     if (self::$instance === null) {
         self::$instance = new self();
     }
     return self::$instance;
 }
开发者ID:reinfire,项目名称:arfooo,代码行数:11,代码来源:FrontController.php

示例4: getInstance

 public static function getInstance()
 {
     if (f::isEmpty(self::$instance)) {
         $class = __CLASS__;
         self::$instance = new $class();
     }
     return self::$instance;
 }
开发者ID:eddyn73,项目名称:SURP,代码行数:8,代码来源:FrontController.php

示例5: getInstance

 /**
  * getInstance - just one instance of the object is allowed (it makes no sense to have more)
  *
  * @access public static
  * @param $rootPath
  * @return object (instance)
  */
 public static function getInstance($rootPath = null)
 {
     if (is_object(self::$instance) === false) {
         if (is_null($rootPath)) {
             throw new Exception('No root path');
         }
         self::$instance = new FrontController($rootPath);
     }
     return self::$instance;
 }
开发者ID:DevelopIdeas,项目名称:leantime,代码行数:17,代码来源:class.frontcontroller.php

示例6: getInstance

 /**
  * the getInstance() method returns a single instance of the object
  */
 public static function getInstance()
 {
     if (!isset(self::$instance)) {
         spl_autoload_register(array('FrontController', 'autoLoad'));
         $object = __CLASS__;
         self::$instance = new $object();
         self::$instance->initApp();
     }
     return self::$instance;
 }
开发者ID:jaeko44,项目名称:time-tracking,代码行数:13,代码来源:front.php


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