使用ipapi.co

时间:2016-08-19 16:24:02

标签: php location ip

我使用 -

检索邮政编码
<?php $pstcde = file_get_contents('https://ipapi.co/'.$_SERVER['REMOTE_ADDR'] . '/postal/'); ?>

效果很好,但是如果找不到邮政编码,它说,&#34;无&#34;。我无法找到禁用该消息的方法。

1 个答案:

答案 0 :(得分:3)

如果回复为None,您可以清空变量。通过简单的检查。

<?php 
  $pstcde = file_get_contents('https://ipapi.co/'.$_SERVER['REMOTE_ADDR'] . '/postal/'); 
  if($pstcde === "None") 
      $pstcde = ""; //Empty string. Or you can use unset($pstcde); if you want to unset the variable.
?>