本文整理汇总了PHP中application::instance方法的典型用法代码示例。如果您正苦于以下问题:PHP application::instance方法的具体用法?PHP application::instance怎么用?PHP application::instance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类application
的用法示例。
在下文中一共展示了application::instance方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: call
public static function call($message = 'Application Error', $code = 500)
{
$_SERVER['REQUEST_URI'] = '/error';
header('HTTP/1.1 ' . $code . ' ' . $message);
application::$instance = new application();
application::get_instance()->bootstrap()->run();
exit;
}
示例2: get_instance
public static function get_instance()
{
if (self::$instance == null) {
// Инициализируем автолоадер. Он ищет сначала в каталоге приложения, если класса нет и есть такой же с префиксом k_ в ядре, содает класс обертку с запрашиваемым именем и наследует ее от найденного в ядре класса
spl_autoload_register(function ($class) {
$is_zend = substr($class, 0, 5) == 'Zend\\';
if ($is_zend) {
if (application::$zend_icluded) {
return;
}
include_once PATH_ROOT . '/' . DIR_LIBRARY . '/lib/Zend/Loader/StandardAutoloader.php';
$loader = new Zend\Loader\StandardAutoloader();
$loader->registerNamespace('Zend', PATH_ROOT . '/' . DIR_LIBRARY . '/lib/Zend');
$loader->register();
if ($class !== 'Zend\\Loader\\StandardAutoloader') {
$loader->autoload($class);
}
} else {
$is_kernel = substr($class, 0, 2) == 'k_';
$fn = str_replace('_', '/', $is_kernel ? preg_replace('/^k\\_/', '', $class) : $class) . '.php';
if (!$is_kernel && file_exists(PATH_ROOT . '/' . DIR_APPLICATION . '/' . $fn)) {
require_once PATH_ROOT . '/' . DIR_APPLICATION . '/' . $fn;
} else {
if (!$is_kernel && defined('DIR_ZLIBRARY') && file_exists(PATH_ROOT . '/' . DIR_ZLIBRARY . '/' . $fn)) {
require_once PATH_ROOT . '/' . DIR_ZLIBRARY . '/' . $fn;
} else {
if (file_exists(PATH_ROOT . '/' . DIR_LIBRARY . '/' . $fn)) {
require_once PATH_ROOT . '/' . DIR_LIBRARY . '/' . $fn;
if (!$is_kernel && class_exists('k_' . $class)) {
eval('class ' . $class . ' extends k_' . $class . ' {};');
}
} else {
if (class_exists('common') && method_exists('common', 'autoload')) {
common::autoload($class);
}
}
}
}
}
});
// Экземпляр приложения создается не из текущего класса, а из класса, который находится в папке приложения
application::$instance = new application();
}
return application::$instance;
}
示例3: getApplication
public static function getApplication() {
if (self::$instance == null) {
self::$instance = new self();
}
return self::$instance;
}