0

是否可以使用 php 从另一个域(当前未拥有)中提取文本数据?如果没有其他方法?我试过使用 iframe,因为我的页面是一个移动网站,所以看起来不太好。我正在尝试显示特定区域的海洋预报。是我要显示的链接。

更新...........

这就是我最终使用的。也许它会帮助别人。但是,我觉得我的问题有不止一个正确答案。

<?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;

?>
4

3 回答 3

1

尝试使用如下所示的用户代理。然后你可以使用 simplexml 来解析内容并提取你想要的文本。 有关 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);
于 2013-02-20T02:16:31.363 回答
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';
}
?>

如果您需要任何修改,请发表评论。

于 2013-02-20T03:10:13.343 回答
0

您可以为此使用 cURL。看看http://www.php.net/manual/en/book.curl.php

于 2013-02-20T02:11:35.473 回答