Home  >  Article  >  Backend Development  >  How to set ip in php curl

How to set ip in php curl

藏色散人
藏色散人Original
2020-08-27 10:04:013397browse

php curl method to set IP: First obtain the visitor IP through the getip method; then use the "getreferer" method to obtain the visitor source; finally, set the page to restrict IP and source access.

How to set ip in php curl

Recommended: "PHP Video Tutorial"

php uses curl to simulate ip and source to access

For websites that have restricted IP addresses and sources, they cannot be accessed using normal access methods. This article will introduce a method to use PHP's curl class to simulate IP and source, and access websites with restricted IP and source.

1. Set the page to restrict IP and source access

server.php

2. Use curl for normal access

Return to deny access

3. Use curl to simulate ip and source to access

Simulate source

curl_setopt($ch, CURLOPT_REFERER, '来源');

Simulate ip

curl_setopt($ch, CURLOPT_HTTPHEADER, array('CLIENT-IP: 模拟ip','X-FORWARDED-FOR: 模拟ip'));

The complete code is as follows:

Return allow access

The above is the detailed content of How to set ip in php curl. For more information, please follow other related articles on the PHP Chinese website!

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