本文整理汇总了PHP中Booster::css方法的典型用法代码示例。如果您正苦于以下问题:PHP Booster::css方法的具体用法?PHP Booster::css怎么用?PHP Booster::css使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Booster
的用法示例。
在下文中一共展示了Booster::css方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: intval
$booster->librarydebug = TRUE;
}
if (isset($_GET['css_hosted_minifier']) && $_GET['css_hosted_minifier'] == 1) {
$booster->css_hosted_minifier = TRUE;
}
$booster->booster_cachedir = $booster_cachedir;
$booster->css_source = $source;
$booster->css_totalparts = $totalparts;
$booster->css_part = $part;
// Check if file gets requested with an eTag, serve 304 if nothing changed
$etag = md5($source . intval($booster->debug) . intval($booster->librarydebug) . intval($booster->css_hosted_minifier) . $booster->filestime);
if (@$_SERVER['HTTP_IF_NONE_MATCH'] === $etag) {
header('HTTP/1.1 304 Not Modified');
exit;
}
$css = $booster->css();
header("Cache-Control: max-age=2592000, public");
header("Expires: " . gmdate('D, d M Y H:i:s', mktime(date('h') + 24 * 35)) . " GMT");
header("Vary: Accept-Encoding");
header("Content-type: text/css");
header("ETag: " . $etag);
if (isset($booster_use_ob_gzhandler)) {
for ($i = 0; $i < strlen($css); $i = $i + 2048) {
echo substr($css, $i, 2048);
if (ob_get_length()) {
@ob_flush('ob_gzhandler');
@flush('ob_gzhandler');
@ob_end_flush('ob_gzhandler');
}
}
} else {
示例2: rtrim
include 'booster_inc.php';
isset($_GET['dir']) ? $source = str_replace('>', '..', rtrim(preg_replace('/[^a-z0-9,\\-_\\.\\/>]/i', '', $_GET['dir']), '/')) : ($source = 'css');
isset($_GET['cachedir']) ? $booster_cachedir = str_replace('>', '..', rtrim(preg_replace('/[^a-z0-9,\\-_\\.\\/>]/i', '', $_GET['cachedir']), '/')) : ($booster_cachedir = 'booster_cache');
isset($_GET['totalparts']) ? $totalparts = intval($_GET['totalparts']) : ($totalparts = 1);
isset($_GET['part']) ? $part = intval($_GET['part']) : ($part = 0);
$booster = new Booster();
if (isset($_GET['debug']) && $_GET['debug'] == 1) {
$booster->debug = TRUE;
}
if (isset($_GET['librarydebug']) && $_GET['librarydebug'] == 1) {
$booster->librarydebug = TRUE;
}
if (isset($_GET['css_hosted_minifier']) && $_GET['css_hosted_minifier'] == 1) {
$booster->css_hosted_minifier = TRUE;
}
$booster->booster_cachedir = $booster_cachedir;
$booster->css_source = $source;
$booster->css_totalparts = $totalparts;
$booster->css_part = $part;
// Check if file gets requested with an eTag, serve 304 if nothing changed
$etag = md5($source . $booster->filestime);
if (@$_SERVER['HTTP_IF_NONE_MATCH'] === $etag) {
header('HTTP/1.1 304 Not Modified');
exit;
}
header("Cache-Control: max-age=2592000, public");
header("Expires: " . gmdate('D, d M Y H:i:s', mktime(date('h') + 24 * 35)) . " GMT");
header("Content-type: text/css");
header("ETag: " . $etag);
echo $booster->css();