我試圖提取使用下面的代碼 香港專業教育學院網站的元數據改變了我的代碼有點PHP獲取元數據
<?php
error_reporting(E_ALL);
$domain='http://www.yahoo.com';
?>
<h3>Reading the meta-data tags of website: <?php echo $domain; ?></h3>
<?php
echo 'Read META info<br>';
$tags = get_meta_tags($domain);
echo 'Check the result and display it.<br>';
if(isset($tags))
echo 'Tags is set';
if (sizeof($tags) == 0){
echo '<tr><td>No META information was found!</td></tr>';
}
else
{
echo 'Metadata found !!';
print_r($tags);
}
?>
但是我沒有得到任何結果。我正在運行本地WAMP服務器的這個腳本。我哪裏錯了?只是尋找關於一個頁面的非常基本的信息。
這是結果即時得到 「閱讀網站的元數據標籤:http://www.yahoo.com 閱讀META信息 檢查結果並顯示它 標籤是setMetadata發現!」。
,但沒有從print_r的輸出($標籤)
試試print_r($ tags);開始。 – 2011-03-14 08:38:08
我用它...沒有結果只是回聲。 – user434885 2011-03-14 09:16:28
查看是否通過使用file_get_contents('http://yahoo.com')從遠程主機獲取任何數據;也許你有某種防火牆。 – 2011-03-14 10:58:46