-
-
/* - * CSS ファイルを圧縮
- * by bbs.it-home.org
- /*
- header('Content-type: text/css');
- ob_start("compress");
- function compress($buffer) {
- /* コメントを削除 */
- $buffer = preg_replace('!/*[^*]**+([^/][^*]**) +)*/!', '', $buffer);
- /* タブ、スペース、改行などを削除します。 */
- $buffer = str_replace(array("rn", "r", "n", "t ", ' ', ' ', ' '), '', $buffer);
- return $buffer;
- }
/* 圧縮する CSS ファイルを読み込みます*/
- include( ' master.css');
- include('typography.css');
- include('grid.css');
- include('print.css');
- include('handheld.css'); p> ;
ob_end_flush();
-
コードをコピー
以前紹介した複数のCSSとJSファイルを圧縮するためのphpコードと比べると、こちらは比較的シンプルで、入門リファレンスとして使用してください。
|