我使用以下代码删除html中的空格。我只想删除两个标签之间的空格。但是下面的代码替换了所有的空格
I.E删除“>”之间的所有空格和“<”
//read the entire string
$str=file_get_contents('sample.txt');
//replace all white spaces
$str=str_replace("\n", "",$str);
$str=str_replace("\t", "",$str);
$str=str_replace(" ", "",$str);
//write the entire string
file_put_contents('sample.txt', $str);
答案 0 :(得分:9)
您需要使用正常的表达。
也许你可以使用它:
$html = preg_replace('/(\>)\s*(\<)/m', '$1$2', $html);