本文整理汇总了PHP中Bootstrap::instance方法的典型用法代码示例。如果您正苦于以下问题:PHP Bootstrap::instance方法的具体用法?PHP Bootstrap::instance怎么用?PHP Bootstrap::instance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Bootstrap
的用法示例。
在下文中一共展示了Bootstrap::instance方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getInstance
public static function getInstance()
{
if (!isset(self::$instance)) {
self::$instance = new self();
}
return self::$instance;
}
示例2: singleton
/**
* @return Bootstrap
*/
public static function singleton()
{
if (!self::$instance instanceof self) {
self::$instance = new self();
}
return self::$instance;
}
示例3: singleton
/**
* Singleton
* If instance of class doesn't exist, autoload application models and create new instance of class
* If instance of class does exist, return instance
* @return object
*/
public static function singleton()
{
if (!isset(self::$instance)) {
foreach (glob("application/models/*.php") as $filename) {
include $filename;
}
$className = __CLASS__;
self::$instance = new $className();
}
return self::$instance;
}
示例4: getInstance
public static function getInstance()
{
if (empty(self::$instance)) {
self::$instance = new Bootstrap();
}
return self::$instance;
}
示例5:
<?php
include "../core/Bootstrap.php";
Bootstrap::instance();