如何使用PHP preg_replace这些字符串

时间:2012-03-16 00:07:20

标签: php preg-replace

我有这样的文字<text **** display="none">****</text> any words and htmlcodes <text **** display="none">****</text>  我想删除所有字符串,例如<text **** display="none">****</text>,以<text开头,</text>包含display="none"

1 个答案:

答案 0 :(得分:0)

这是怎么回事?

$solution = preg_replace("@<text[^>]*display=\"none\"[^>]*>.*?</text>@ims", "", $yourstring);