0

私はこのリンクを持っています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


?>

動作せず、白いページを返すのはなぜですか?

4

1 に答える 1

0

使用してみてください:

print_r(
   get_meta_tags("http://www.geobytes.com/IpLocator.htm?GetLocation&template=php3.txt&IpAddress=") 
);
于 2013-05-20T15:10:17.770 に答える