<?php
include('simple_html_dom.php');
function curPageURL() {
$pageURL = 'http';
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80") {
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
}else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pageURL;
}
// Retrieve the DOM from a given URL
$html = file_get_html(curPageURL());
str_ireplace("http://martianguy.com","http://new.martianguy.com", $html);
?>
我正在尝试用 new.martianguy.com (所有 href 和 scr 属性)替换域 martianguy.com 的所有链接。在 file_get_html 函数中使用当前页面 url 可以吗?当我在本地主机上测试它时,它什么也没做,30 秒后超时。