返回手机归属地查询...登陆

手机归属地查询

2019-02-21 20:27:40281

<?php

include 'function.php';

if(empty($_POST['phone'])){

exit(json_encode(array('code'=>1,'msg'=>'手机号码不能为空')));

}

$url = "http://apis.juhe.cn/mobile/get";

$params = array(

    "phone" => $_POST['phone'],

    "key" => "4d6cce531387deeedf359687fb04c163",

);

$paramstring = http_build_query($params);

$content = juheCurl($url, $paramstring);

$result = json_decode($content, true);

if ($result) {

    exit(json_encode(array('code'=>0,'res'=>$result)));

} else {

   

exit(json_encode(array('code'=>1,'msg'=>'接口出错')));

}


最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送