0
如何從另一個網站上的text/php
文件獲得URL
,然後打開該URL鏈接?如何從遠程txt/php文件獲取URL並加載該URL?
如果沒有一個只是默認如default.php
我有機會獲得這兩個網站,
如何從另一個網站上的text/php
文件獲得URL
,然後打開該URL鏈接?如何從遠程txt/php文件獲取URL並加載該URL?
如果沒有一個只是默認如default.php
我有機會獲得這兩個網站,
如果我理解正確的話,你想一個網站上請求URL網站B.網站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);
?>
完美的作品,謝謝堆:) – Benjamin 2013-03-14 11:43:45
使用curl獲取數據以從站點B獲取數據,然後重定向到鏈接。 – Hemc 2013-03-14 09:45:12