本文整理匯總了PHP中Autoloader::instance方法的典型用法代碼示例。如果您正苦於以下問題:PHP Autoloader::instance方法的具體用法?PHP Autoloader::instance怎麽用?PHP Autoloader::instance使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Autoloader
的用法示例。
在下文中一共展示了Autoloader::instance方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getInstance
public static function getInstance()
{
if (is_null(self::$instance)) {
self::$instance = new self();
}
return self::$instance;
}
示例2: getInstance
/**
* Well, if you want, you can use it as a singleton....
* @return Autoloader $singleton instance
*/
public static function getInstance()
{
if (self::$instance == null) {
self::$instance = new Autoloader();
}
return self::$instance;
}
示例3: run
public function run()
{
$loader = Autoloader::instance();
pc($loader, 'loader');
$ViewClass = $loader->view();
$view = new $ViewClass();
$view->render();
}
示例4: session_start
<?php
/*
* Lantern-CMS
*/
session_start();
define('LCMS_V', '0.0.1');
define('ABSPATH', __DIR__);
define('PATH_VIEWS', ABSPATH . '/lantern/views');
define('PATH_PLUGINS', ABSPATH . '/lantern/plugins');
define('PATH_CACHE', ABSPATH . '/cache');
// Autoloaders
include 'core/autoloader.php';
include 'vendor/autoload.php';
Autoloader::instance('Core', __DIR__)->register();
// register the core autoloader with spl
Autoloader::instance('Lantern', __DIR__)->register();
// register the plugin autoloader with spl
//include 'services.php';
$url = isset($_GET['url']) ? $_GET['url'] : '/';
$app = new Core\App();
$app->configure(parse_ini_file('config.ini'));
$app->run($url);