Örneğin ben böyle bir dize var:
$html = '
<a href="test.html">test</a>
<a href="http://mydomain.com/test.html">test</a>
<a href="http://otherdomain.com/test.html">test</a>
<a href="someothertest/otherdir/hi.html">hi</a>
';
ve ben hiçbir abolute alanı verilen tüm HREF'lerle mutlak url eklemek istiyorum.
$html = '
<a href="http://mydomain.com/test.html">test</a>
<a href="http://mydomain.com/test.html">test</a>
<a href="http://otherdomain.com/test.html">test</a>
<a href="http://mydomain.com/someothertest/otherdir/hi.html">hi</a>
';
nedir bunun için en iyi yolu? i RegEx'in bir şey sanırım, ama benim RegEx becerileri ** vardır ;)
şimdiden teşekkürler!