I would like to change a string from:
<a href....>*</a>
to:
<article><a href=....>*</a></article>
I have tried this but my understanding of RegEx is too bad.
$n = '/<a (.*)[^>]>/';
$h = '/<article><a(.*)[^>]>/i','/<\/a></articla>/';
$reg = preg_replace($n, $h, $content);