There are a lot of posts on converting relative to absolute paths in PHP. I'm looking for a specific implementation beyond these posts (hopefully). Could anyone please help me with this specific implementation?
I have a PHP variable containing diverse HTML, including hrefs and imgs containing relative urls. Mostly (for example) /en/discover or /img/icons/facebook.png
I want to process this PHP variable in such a way that the values of my hrefs and imgs will be converted to http://mydomain.com/en/discover and http://mydomain.com/img/icons/facebook.png
I believe the question below covers the solution for hrefs. How can we expand this to also consider imgs?
Would a regex be in order? Or since we're dealing with a lot of output should we use DOMDocument?

<base href="http://mydomain.com">in your<head>enough? If not, then using a regex is all You could do - actualy you would need to usepreg_replace_allfunction. – shadyyx Nov 19 '12 at 16:18