| 名称 | 必填 | 类型 | 说明 |
|---|---|---|---|
| ip | 否 | string | 输入IP地址 |
{"data":{"ip":"58.154.0.0","long_ip":"983171072","isp":"教育网","area":"东北","region_id":"210000","region":"辽宁","city_id":"210100","city":"沈阳","country_id":"CN","country":"中国"},"ret":200,"msg":"success","log_id":"ea5ba28845ef44fa923a6bee52a271df"}
自行调用
<?php
header("Content-Type:text/json;charset=UTF-8"); date_default_timezone_set("PRC"); $ip = $_GET["ip"]; $url = "https://api.0sm.com/getIpInfo?ip=".$ip; $data=file_get_contents($url); echo $data;
?>