本文整理汇总了PHP中icms::setup方法的典型用法代码示例。如果您正苦于以下问题:PHP icms::setup方法的具体用法?PHP icms::setup怎么用?PHP icms::setup使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类icms
的用法示例。
在下文中一共展示了icms::setup方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: defined
defined("XOOPS_MAINFILE_INCLUDED") or die;
/** @todo This funtion has been deprecated in PHP 5.3.0 - need to adjust in 1.4 ~skenow */
if (get_magic_quotes_runtime()) {
@set_magic_quotes_runtime(0);
}
// -- Include common functions and constants file
require_once ICMS_ROOT_PATH . "/include/constants.php";
include_once ICMS_INCLUDE_PATH . "/functions.php";
include_once ICMS_INCLUDE_PATH . "/debug_functions.php";
include_once ICMS_INCLUDE_PATH . "/version.php";
if (!isset($xoopsOption)) {
$xoopsOption = array();
}
// -- Initialize kernel and launch bootstrap
require_once ICMS_LIBRARIES_PATH . "/icms.php";
icms::setup();
icms::boot();
// -- Easiest ML by Gijoe (no longer needed here)
// Disable gzip compression if PHP is run under CLI mode
// To be refactored
if (empty($_SERVER['SERVER_NAME']) || substr(PHP_SAPI, 0, 3) == 'cli') {
$icmsConfig['gzip_compression'] = 0;
}
if ($icmsConfig['gzip_compression'] == 1 && extension_loaded('zlib') && !ini_get('zlib.output_compression')) {
if (@ini_get('zlib.output_compression_level') < 0) {
ini_set('zlib.output_compression_level', 6);
}
ob_start('ob_gzhandler');
}
// Include openid common functions if needed
if (defined('ICMS_INCLUDE_OPENID')) {