我的内容中有几段内容,想在例如以下内容之前删节所有内容:这是一条评论声明
我尝试使用str_replace()
,但是这种方法和preg_replace
都无法做到,但是在每次验证时,我的内容都保持不变。
还有更好的方法吗?
答案 0 :(得分:0)
str_replace
在您的情况下将不起作用。尝试preg_replace
并删除第一个匹配模式-
preg_replace('/.+?(?=This is a comment statement)/', '', $your_string, 1)
{{3}}