本篇將會詳解php 壓縮CSS程式碼的方法。
將以下程式碼放置在style.css.php 檔案中,不要忘記包含你需要的css 檔案:
<?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", "\t", ' ', ' ', ' '), '', $buffer); return $buffer;} /* your css files */include('master.css');include('typography.css');include('grid.css');include('print.css');include('handheld.css'); ob_end_flush();
然後在HTML 頁面中在引入樣式的地方引入該php檔案:
<link rel="stylesheet" type="text/css" media="screen" href="style.css.php"/>
本篇講解了關於php 壓縮CSS程式碼的方法,更多相關內容請關注php中文網。
相關推薦:
#以上是關於php 壓縮CSS程式碼的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!