この記事では、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 中国語 Web サイトをご覧ください。
関連する推奨事項:
PHP は json を受信し、受信したデータをデータベースに挿入します
以上がPHPでCSSコードを圧縮する方法についての詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。