本文整理匯總了PHP中CApp::encoding方法的典型用法代碼示例。如果您正苦於以下問題:PHP CApp::encoding方法的具體用法?PHP CApp::encoding怎麽用?PHP CApp::encoding使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CApp
的用法示例。
在下文中一共展示了CApp::encoding方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: array
}
CAppUI::$dialog =& $dialog;
// clear out main url parameters
$m = $a = $u = $g = "";
CMbPerformance::mark("input");
// Locale
require __DIR__ . "/locales/core.php";
if (empty($locale_info["names"])) {
$locale_info["names"] = array();
}
setlocale(LC_TIME, $locale_info["names"]);
if (empty($locale_info["charset"])) {
$locale_info["charset"] = "UTF-8";
}
// We don't use mb_internal_encoding as it may be redefined by libs
CApp::$encoding = $locale_info["charset"];
// Character set
if (!$suppressHeaders || $ajax) {
header("Content-type: text/html;charset=" . CApp::$encoding);
}
CMbPerformance::mark("locales");
// HTTP headers
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
// Date in the past
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
// always modified
header("Cache-Control: no-cache, no-store, must-revalidate");
// HTTP/1.1
header("Pragma: no-cache");
// HTTP/1.0
header("X-UA-Compatible: IE=edge");