Hallo Leute,
Ich stehe vor dem Problem relative in absolute urls umzuwandeln und komme dabei leider nicht weiter. Ich habe eine variable die html content beinhaltet, zb:
(Das Forum fügt "http://www.php-resource.de/forum/" am Anfang der src ein. Denkt euch das einfach weg )
Nun möchte ich die url des zweiten Bildes in eine absolute url umwandeln mit folgender regex:
Es funktioniert auch insofern, dass nur das zweite bild beachtet wird. Das Problem ist jedoch, dass das i von images entfernt wird. Der Pfad ist also zb http://meineseite.de/mages/sunflower.jpg
Hat jemand einen Tip für mich wie es richtig funktioniert?
Gruss,
Pete
Ich stehe vor dem Problem relative in absolute urls umzuwandeln und komme dabei leider nicht weiter. Ich habe eine variable die html content beinhaltet, zb:
PHP-Code:
<p><img src="http://meineseite.de/images/sunflower.jpg" height="141" width="235" border="0">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.
<img src="http://www.php-resource.de/forum/images/sunflower.jpg" height="141" width="235" border="0"></p>
Nun möchte ich die url des zweiten Bildes in eine absolute url umwandeln mit folgender regex:
PHP-Code:
$imagepath = ' src="'.$pageURL;
$html_content = preg_replace('/ src="[^(http)]/', $imagepath, $html_content);
Hat jemand einen Tip für mich wie es richtig funktioniert?
Gruss,
Pete
Kommentar