[PHP-users 4895] Re: HTMLのソースをストリングに
PHP-ML User APTECH
php-users@php.gr.jp
Tue, 22 Jan 2002 13:39:49 +0900
関口です。
>下のほうは、”ファイル“ではないからではないでしょうか?
>http://www.hotmail.com/index.html とかにしてみたらどうでしょう?
>愚見ですが、参考になれば…。
日高さんのレスのとおり、以下であれば起動します。
<?php
// Webページを配列として取得し、出力します。
$fcontents = file('http://www.yahoo.co.jp/index.html');
while (list($line_num,$line) = each($fcontents)) {
echo "<b>Line $line_num:</b> " . htmlspecialchars($line) . "<br>\n";
}
// Webページを文字列として取得します。
$fcontents = join('', file('http://www.yahoo.co.jp/index.html'));
echo "コンテンツ<br>";
echo $fcontents;
?>
--
SEKIGUCHI Aptech inc.
PHP ML BOX
mailto:phpml@aptech.co.jp