我使用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
但是无法理解
做我需要的。