我有这个链接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
?>
不工作并返回白页为什么?
答案 0 :(得分:0)
尝试使用:
print_r(
get_meta_tags("http://www.geobytes.com/IpLocator.htm?GetLocation&template=php3.txt&IpAddress=")
);