$content = preg_replace("~(<a href=\"(.*)\">\w+)~iU", '', $content);
$ok = preg_replace("~(</a>)~iU", '', $content);
echo $ok;
I need to control the $content...
I want to remove all link in the $content....
even <a href="xx"><img xxxx> </a>
all to remove A tag Just save <img xxx>
...
How can I do?
I need edit the REGEX??
why I just can del the first one