當前位置: 首頁>>代碼示例>>PHP>>正文


PHP AutoLoader::init方法代碼示例

本文整理匯總了PHP中AutoLoader::init方法的典型用法代碼示例。如果您正苦於以下問題:PHP AutoLoader::init方法的具體用法?PHP AutoLoader::init怎麽用?PHP AutoLoader::init使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在AutoLoader的用法示例。


在下文中一共展示了AutoLoader::init方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: header

/**
 * путь до корневой директории
 */
$projectRoot = '/home/sites/balancer1.lj-top.ru/';
/**
 * Управляем кешом уровня nginx сразу - в случае любой ошибки, кеширование отключено.
 * Заголовок кеширования со временем отправляется при выводе в браузер, иначе - 0
 */
header('X-Accel-Expires: 0');
/**
 * Уровень ошибок
 */
error_reporting(E_ALL);
ini_set('display_errors', 1);
/**
 * Загружаем настройки проекта
 */
$configuration = (require_once $projectRoot . 'configs' . DIRECTORY_SEPARATOR . 'main.php');
/**
 * Autoloader
 */
require_once $projectRoot . 'lib' . DIRECTORY_SEPARATOR . 'AutoLoader.php';
AutoLoader::init($projectRoot, $configuration['includePathes']);
/**
 * Инициализируем приложение по загруженному конфигу
 */
$application = new \Application\Web($configuration);
/**
 * Запускаем приложение
 */
$application->run();
開發者ID:rasstroen,項目名稱:example,代碼行數:31,代碼來源:index.php

示例2: ini_set

    ini_set('display_errors', $config['phpErrorReporting']['displayErrors']);
}
if (isset($config['phpErrorReporting']['errorReportingValue'])) {
    error_reporting($config['phpErrorReporting']['errorReportingValue']);
}
if (isset($config['phpErrorReporting']['logErrors'])) {
    ini_set('log_errors', $config['phpErrorReporting']['logErrors']);
}
if (isset($config['phpErrorReporting']['errorLogFile'])) {
    if ($config['phpErrorReporting']['errorLogFile'] != '') {
        ini_set('error_log', $config['phpErrorReporting']['errorLogFile']);
    }
}
// Load and initialize the AutoLoader class
require_once APPLICATION_ROOT . 'system/core/library/AutoLoader.php';
AutoLoader::init();
// Start the InvokeConfig mechanism
InvokeConfig::init();
// Set the timezone
if (function_exists("date_default_timezone_set")) {
    if (isset($config['timezone'])) {
        date_default_timezone_set($config['timezone']);
    } else {
        date_default_timezone_set('Europe/Berlin');
    }
}
// Set up the FileUtils-library
if (isset($config['fileUtils'])) {
    FileUtils::setChmodSettings($config['fileUtils']['useChmod'], $config['fileUtils']['directoryMode'], $config['fileUtils']['fileMode']);
}
// delete the global variable $config
開發者ID:pixelproduction,項目名稱:PixelManagerCMS,代碼行數:31,代碼來源:index.php


注:本文中的AutoLoader::init方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。