Home >Backend Development >PHP Tutorial >Simulating data, how to create a large number of IP addresses with zones?

Simulating data, how to create a large number of IP addresses with zones?

WBOY
WBOYOriginal
2016-07-06 13:53:531213browse

I want to simulate a large amount of data for testing.
The format is as follows. “广东省广州市,180.88.42.155”
If the IP is randomly generated, what about the previous provinces and cities?

Reply content:

I want to simulate a large amount of data for testing.
The format is as follows. “广东省广州市,180.88.42.155”
If the IP is randomly generated, what about the previous provinces and cities?

The first step is to pay attention to the PHP technology encyclopedia (WeChat public account: phpgod);
The second step is to study Baidu’s API, which can help you, http://lbsyun.baidu.com/index.php ?title=webapi/ip-api;
The third step, please apply for Baidu API calling permission in advance, and then get ak and other information. After getting it, you can obtain the information by calling Baidu’s ip-api;

Problems you may encounter:
1. If the IP is randomly generated, many foreign addresses may be generated;
2. Calling Baidu’s API once for each IP address will be very slow, you can try Use curl_multi_exec to execute multiple concurrent requests and use the network as much as possible. After the processing is completed, put it into a formatted file. For example, use comma-separated file lines to make a line of information, and then write a new script to batch insert the specified information into the database;
3. For the calling restrictions of ip-api, please operate according to Baidu’s calling restrictions instructions for this API. ``

Can’t the location also be random? There is no need to match reality one-to-one.

Statement:
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