Remove white spaces between tags in HTML

前端 未结 1 2017
渐次进展
渐次进展 2020-12-19 14:46

I am using the following code to remove white spaces in html. I only want to remove white spaces in betweens tags. But below code replaces all white spaces

I.E remov

相关标签:
1条回答
  • 2020-12-19 15:07

    You need use a regular expresion.

    Maybe you can use this:

    $html = preg_replace('/\>\s+\</m', '><', $html);
    

    Test here https://repl.it/

    0 讨论(0)
提交回复
热议问题