标签: php preg-replace
下面的代码在p个html标签之间找到文本,但是我该怎么办?
$text = "<p>old_string</p>"; echo preg_replace("#\<p\>(.+?)\<\/p\>#s","new_string", $text);
预先感谢