| style.css.php css 내용이 많거나 파일이 나누어져있을때 코드압축 |
|
|
 |
16년 전 |
style.css.php
---------------
<?php
header('Content-type: text/css');
ob_start("compress");
function compress($buffer) {
/* remove comments */
$buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer);
/* remove tabs, spaces, newlines, etc. */
$buffer = str_replace(array("\r\n", "\r", "\n", "\t", ' ', ' ', ' '), '', $buffer);
return $buffer;
}
/* your css files */
include_once "style.css";
ob_end_flush();
?>
이렇게 하고
<link rel="stylesheet" href="style.css.php" type="text/css" />
요로크롬 불러주시면 됩니다.~ JS도 비슷한방법으로 ~~ |
|
추천 : 569 |
추천
목록
|
|