如何从远程txt / php文件获取URL并加载该URL?

时间:2013-03-14 09:42:54

标签: php post curl get file-get-contents

如何从另一个网站上的URL文件中获取text/php,然后打开该网址链接?

如果没有一个只是默认为default.php

我可以访问这两个网站,

1 个答案:

答案 0 :(得分:0)

如果我理解正确,您希望站点A在站点B上请求URL。然后,站点B将使用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);
?>