15 lines
565 B
PHP
Executable File
15 lines
565 B
PHP
Executable File
<?php
|
|
header("Content-type: text/css");
|
|
function compress($buffer) {
|
|
$buffer = preg_replace("!/\*[^*]*\*+([^/][^*]*\*+)*/!", "", $buffer);
|
|
$buffer = str_replace(array("\r\n", "\r", "\n", "\t", " ", " ", " "), "", $buffer);
|
|
return $buffer;
|
|
}
|
|
ob_start("compress");
|
|
include("../style/style1.css"); // Ссылка на стиль 1
|
|
include("../style/style2.css"); // Ссылка на стиль 2
|
|
include("../style/style3.css"); // Ссылка на стиль 3
|
|
include("../style/style4.css"); // Ссылка на стиль 4
|
|
ob_end_flush();
|
|
?>
|