我检查了其他的答案,但似乎无法做到以下几点。 请帮助别人:)
我想在两者之间,并包括特定HTML注释去掉一切
HTML:
Some HTML that must stay
<!-- START IF USER_ID -->
some html that must go
<!-- END IF USER_ID -->
Some more HTML that's gotta stay
<!-- START IF USER_ID -->
this also needs to go
<!-- END IF USER_ID -->
所以之间的一切<!-- START IF USER_ID -->
和<!-- END IF USER_ID -->
和本身需要的意见去
我的preg_replace模式 (这显然是错误的):
"/<!-- START IF USER_ID -->.*?<!-- END IF USER_ID -->/"
结果应该是
Some HTML that must stay
Some more HTML that's gotta stay
感谢您检查和提前的答案:)