本文整理匯總了PHP中core\Config::ApplyIni方法的典型用法代碼示例。如果您正苦於以下問題:PHP Config::ApplyIni方法的具體用法?PHP Config::ApplyIni怎麽用?PHP Config::ApplyIni使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類core\Config
的用法示例。
在下文中一共展示了Config::ApplyIni方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: dirname
if (file_exists(dirname($modulePath) . "/Event.php")) {
include_once dirname($modulePath) . "/Event.php";
}
}
}
$include_flux = trim(ob_get_contents());
ob_end_clean();
// Liste des module php preconisé
$loadedExtension = \Core\Server::extensions();
foreach (array("mcrypt", "mbstring", "zlib") as $mod) {
if (!in_array(strtolower($mod), $loadedExtension)) {
\Core\FirePHP::fbLog("warn", "Warning : module " . strtoupper($mod) . " is not installed");
}
}
// Set php config
\Core\Config::ApplyIni();
$_REQUEST = \Core\Request::create($_REQUEST);
// Renvoie dans fb les eventuels flux des includes
if ($include_flux !== "") {
// info, warn, error, dump, trace, table
\Core\FirePHP::fbLog("warn", $include_flux);
\Core\Event::fire("Page_FluxNotNull", $_REQUEST, $include_flux);
}
// Default service et request
// Par défault la page d'accueil se trouve dans services/_default.php, function Main()
$s = "_default";
$r = "main";
// Get security defaultService
$confSecurity = \Core\Config::get("security");
if (!empty($confSecurity) && isset($confSecurity["defaultService"]) && !empty($confSecurity["defaultService"])) {
$defaultService = $confSecurity["defaultService"];