使用PHP将相对URL转换为绝对URL以获得完整的网页

时间:2015-10-24 11:33:54

标签: php simplexml

我使用PHP来读取HTML文件:

$w = file_get_contents('http://localhost/site1/theme/default/about.html');

PHP代码从http://localhost/site1/运行。我使用simplexml来查找图像等内容src="images/image1.png"并将其更改为http://localhost/site1/theme/default/about/images/image1.png。 这有效,但我如何改变

之类的东西
background-image: url("../images/World1.png");

href="../../stylesheet.css" 

绝对路径?我看了url_to_absolute.php但是无法理解 做我需要的。

0 个答案:

没有答案