如何URL
从text/php
另一个站点上的文件中获取一个然后打开该 URL 链接?
如果没有,则默认为 default.php
我可以访问这两个网站,
如何URL
从text/php
另一个站点上的文件中获取一个然后打开该 URL 链接?
如果没有,则默认为 default.php
我可以访问这两个网站,
如果我理解正确,您希望站点 A 请求站点 B 上的 URL。站点 B 将响应一个 URL,您希望加载该 URL。你可以使用以下
<?
$url = 'http://www.siteb.com/givemeaurl.php';
$content = implode('', file($url));//
//$content now contains the response from site B. If its only the URL you can use it directly, else you need to parse the results
if (strlen($content)>0) {
//we have a value
$newurl = $content;
} else {
//no value
$newurl = 'default.php';
}
//no open the new site
header('Location: ' . $newurl);
?>