0

PHPを使用して別のドメイン(現在所有していない)からテキストデータを取得することは可能ですか? 他の方法ではない場合は?iframe を使用してみましたが、私のページはモバイル Web サイトであるため、見栄えがよくありません。特定の地域の海洋予報を表示しようとしています。これが私が表示しようとしているリンクです。

アップデート...........

これが私が最終的に使用したものです。多分それは他の誰かを助けるでしょう。しかし、私の質問には複数の正解があると感じました。

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

これは、天気予報サイトの同じ形式に依存することを除いて、あなたが望むように機能します(また、「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 に答える
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 に答える
0

そのためにcURLを使用できます。http://www.php.net/manual/en/book.curl.phpをご覧ください

于 2013-02-20T02:11:35.473 に答える