Add link around img tags with regexp
- by rdanee
I would like to add links around image tags with preg_replace().
Before:
<img href="" src="" alt="" />
After:
<a href="" ..><img href="" src="" alt="" /></a>
I would greatly appreciate any help. Thank you very much.