本文整理匯總了PHP中Bootstrap::_instance方法的典型用法代碼示例。如果您正苦於以下問題:PHP Bootstrap::_instance方法的具體用法?PHP Bootstrap::_instance怎麽用?PHP Bootstrap::_instance使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Bootstrap
的用法示例。
在下文中一共展示了Bootstrap::_instance方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: factory
/**
* @return Bootstrap
*/
public static function factory()
{
if (!is_null(self::$_instance)) {
return self::$_instance;
}
return self::$_instance = new self();
}
示例2: getInstance
public static function getInstance()
{
if (!self::$_instance) {
self::$_instance = new self();
}
return self::$_instance;
}
示例3: instance
public static function instance()
{
if (self::$_instance === false) {
self::$_instance = new Bootstrap();
}
return self::$_instance;
}
示例4: getBooster
/**
* @return Bootstrap
* @since 2.1.0
*/
public static function getBooster()
{
if (null === self::$_instance) {
// Lets find inside current module
$module = Yii::app()->getController()->getModule();
if ($module) {
if ($module->hasComponent('bootstrap')) {
self::$_instance = $module->getComponent('bootstrap');
}
}
// Still nothing?
if (null === self::$_instance) {
if (Yii::app()->hasComponent('bootstrap')) {
self::$_instance = Yii::app()->getComponent('bootstrap');
}
}
}
return self::$_instance;
}