输入是一个多行字符串,例如:
table {
border:0;
border-spacing:0;
border-collapse:collapse;
margin-left:auto; // 'align:center' equivalent
margin-right:auto;
}
输出是一个单行字符串,其中删除了“额外”空格和注释,例如:
table { border:0; border-spacing:0; border-collapse:collapse; margin-left:auto;}
使用 Perl 的一种方法是:
#! perl -w
use strict;
my $css = <<CSS;
table {
border:0;
border-spacing:0;
border-collapse:collapse;
margin-left:auto; // 'align:center' equivalent
margin-right:auto;
}
CSS
$css =~ s/\s{2,}/ /g; # globally replace 2 or more whitespace with 1 space
$css =~ s|\s+//.+\n||g; # globally replace C comment with empty string
$css =~ s|\n||g; # globally replace newline with empty string
print $css;
我尝试在 PHP 中做类似的事情,但它对输入没有任何作用:
<?php
define("CSS_TABLE",
"table {
border:0;
border-spacing:0;
border-collapse:collapse;
margin-left:auto; // 'align:center' equivalent
margin-right:auto;
}");
$css = CSS_TABLE;
preg_replace("/\s\s+/", ' ', $css);
preg_replace("/\s+\/\/.+\n/", '', $css);
preg_replace("/\n/", '', $css);
echo("CSS-min: $css\n\n");
?>
注意:“定义”不是问题,因为我还使用了“这里”文档——这两种方式都没有乐趣。我显示的是“定义”而不是“此处”文档(如 Perl 示例中),因为现有的 PHP 代码使用它(以及一大堆其他代码!)。
我究竟做错了什么?