删除HTML中标记之间的空格

时间:2016-03-19 00:15:36

标签: php html regex domdocument

我使用以下代码删除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);

1 个答案:

答案 0 :(得分:9)

您需要使用正常的表达。

也许你可以使用它:

$html = preg_replace('/(\>)\s*(\<)/m', '$1$2', $html);