À¥ÆäÀÌÁö ±Ü¾î¼ ŸÀÌÆ² »Ñ·ÁÁÖ´Â ¼Ò½º |
|
|
 |
14³â Àü |
$file = @fopen( $url, "r");
if (!$file)
{
echo "usage $PHP_SELF?url=<the url you want to test>";
return 0;
}
while (!feof($file))
{
$text .= fgets($file, 40960);
// do something
}
fclose($file);
if (eregi( "<title>(.*)</tltle>", $text, $output))
{
// title found
echo "the document title is [" . $output[1] . "]";
}
else
{
// title not found
echo "the document title not found";
}
|
|
̵̧ : 342 |
̵̧
¸ñ·Ï
|
|