PHP obtains the location of mobile phone number through API_PHP tutorial

WBOY
Release: 2016-07-13 09:52:44
Original
1167 people have browsed it

PHP obtains the location of the mobile phone number through API

This API supports 1. You can enter an 11-digit mobile phone number to query the location, such as: 13858861234, 2. You can enter a 7-digit number segment to query The attribution address is: 1335586, 3. It supports number segments 13, 14, 15, 17, and 18. Friends in need can refer to it.

This API interface has been running stably since the SAE platform was launched in 2011. It has added support for segment 17. All collections are welcome and the limit is 10 concurrency

Detailed instructions for use

Interface address: http://appyun.sinaapp.com/index.php?app=mobile&controller=index&action=api

Request method: GET

Request parameters:

 Parameter name Type Required Parameter position Description Default value

 app string is the urlParam module name (unchanged) mobile

 controller string is the urlParam controller name index

 action string is urlParam operation name api

mobile string is urlParam mobile phone number or number range 13800138000

Outfmt string is the expected result type of urlParam json

Request example:

 http://appyun.sinaapp.com/index.php?app=mobile&controller=index&action=api&outfmt=json&mobile=13800138000

JSON return example:

 ?

1

2

3

4

5

6

7

8

9

10

{

"id":"80012",

"Mobile":"13800138000",

"Province":"u5317u4eac",

"City":"u5317u4eac",

"AreaCode":"010",

"PostCode":"100000",

"Operators":"u4e2du56fdu79fbu52a8",

"Card":"GSM"

}

1

2

3

1

2

3

4

5

6

7

8

9

10

11

13800138000

True

北京

北京

010

100000

中国移动

GSM

4

5

1

2

3

4

5

6

function getMobileInfo($mobile)

{

$response = file_get_contents('http://appyun.sinaapp.com/index.php?app=mobile&controller=index&action=api&outfmt=json&mobile='.$mobile)

$result = json_decode($response,true);

return $result;

}

6 7 8 9 10
{ "id":"80012", "Mobile":"13800138000", "Province":"u5317u4eac", "City":"u5317u4eac", "AreaCode":"010", "PostCode":"100000", "Operators":"u4e2du56fdu79fbu52a8", "Card":"GSM" }
XML return example:  ?
1 2 3 4 5 6 7 8 9 10 11 13800138000 True Beijing Beijing 010 100000 China Mobile GSM
How to use  ?
1 2 3 4 5 6 function getMobileInfo($mobile) { $response = file_get_contents('http://appyun.sinaapp.com/index.php?app=mobile&controller=index&action=api&outfmt=json&mobile='.$mobile) $result = json_decode($response,true); return $result; }

The above is the entire content of this article, I hope you all like it.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1007640.htmlTechArticlePHP obtains the location of the mobile phone number through API. This API supports 1. You can enter the 11-digit mobile phone number to query the location, such as: 13858861234, 2. You can enter a 7-digit number segment to query the home address, such as: 1335586, 3. Support number segments...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!