获取元标记不起作用

时间:2013-05-20 15:00:24

标签: php html meta-tags

我有这个链接http://www.geobytes.com/IpLocator.htm?GetLocation&template=php3.txt&IpAddress=

并返回元标记

<meta name="known" content="true">

<meta name="internet" content="EN">

等。在页面php我试过这个

<?php 

$tags = get_meta_tags('http://www.geobytes.com/IpLocator.htm?GetLocation&template=php3.txt&IpAddress=');


print $tags['city'];  // city name


?>

不工作并返回白页为什么?

1 个答案:

答案 0 :(得分:0)

尝试使用:

print_r(
   get_meta_tags("http://www.geobytes.com/IpLocator.htm?GetLocation&template=php3.txt&IpAddress=") 
);