本文整理匯總了PHP中Pagekit\Application::run方法的典型用法代碼示例。如果您正苦於以下問題:PHP Application::run方法的具體用法?PHP Application::run怎麽用?PHP Application::run使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Pagekit\Application
的用法示例。
在下文中一共展示了Application::run方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: App
<?php
use Pagekit\Application as App;
use Pagekit\Installer\Controller\UpdateController;
use Pagekit\Module\Loader\AutoLoader;
use Pagekit\Module\Loader\ConfigLoader;
$loader = (require $path . '/autoload.php');
$requirements = (require __DIR__ . '/requirements.php');
if ($failed = $requirements->getFailedRequirements()) {
require __DIR__ . '/views/requirements.php';
exit;
}
$app = new App($config);
$app['autoloader'] = $loader;
$app['module']->register(['app/modules/*/index.php', 'app/installer/index.php', 'app/system/index.php'], $path);
$app['module']->addLoader(new AutoLoader($app['autoloader']));
$app['module']->addLoader(new ConfigLoader(require $path . '/app/system/config.php'));
$app['module']->addLoader(new ConfigLoader(require __DIR__ . '/config.php'));
$app['module']->load('installer');
$app->run();