是否可以使用php从另一个域(当前不拥有)中提取文本数据?如果没有其他方法?我尝试过使用Iframe,因为我的网页是移动网站,所以看起来不太好看。我正在尝试显示特定区域的海洋预报。 Here是我要显示的链接。
更新...........
这是我最终使用的。也许它会帮助别人。但是我觉得我的问题不止一个正确答案。
<?php
$ch = curl_init("http://forecast.weather.gov/MapClick.php?lat=29.26034686&lon=-91.46038359&unit=0&lg=english&FcstType=text&TextType=1");
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
$content = curl_exec($ch);
curl_close($ch);
echo $content;
?>
答案 0 :(得分:1)
尝试使用用户代理,如下所示。然后,您可以使用simplexml来解析内容并提取所需的文本。 For more info on simplexml.
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"User-agent: www.example.com"
)
);
$content = file_get_contents($url, false, stream_context_create($opts));
$xml = simplexml_load_string($content);
答案 1 :(得分:1)
这符合我的想法,除了它取决于天气网站的相同格式(也显示“Outlook”)。
<?php
//define the URL of the resource
$url = 'http://forecast.weather.gov/MapClick.php?lat=29.26034686&lon=-91.46038359&unit=0&lg=english&FcstType=text&TextType=1';
//function from http://stackoverflow.com/questions/5696412/get-substring-between-two-strings-php
function getInnerSubstring($string, $boundstring, $trimit=false)
{
$res = false;
$bstart = strpos($string, $boundstring);
if($bstart >= 0)
{
$bend = strrpos($string, $boundstring);
if($bend >= 0 && $bend > $bstart)
{
$res = substr($string, $bstart+strlen($boundstring), $bend-$bstart-strlen($boundstring));
}
}
return $trimit ? trim($res) : $res;
}
//if the URL is reachable
if($source = file_get_contents($url))
{
$raw = strip_tags($source,'<hr>');
echo '<pre>'.substr(strstr(trim(getInnerSubstring($raw,"<hr>")),'Outlook'),7).'</pre>';
}
else{
echo 'Error';
}
?>
如果您需要任何修改,请发表评论。
答案 2 :(得分:0)
您可以使用cURL。看看http://www.php.net/manual/en/book.curl.php