1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| <?php
// minifying the CSS
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;
}
?>
body {
background-color: #FFF;
color: black;
margin: 0;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}
table {
margin: 0;
padding: 0;
border: 0;
}
// . . . snip . . .
<?php ob_end_flush(); ?>
|