This article mainly introduces the method of using curl to simulate IP and source access in PHP. Interested friends can refer to it. I hope it will be helpful to everyone.
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 page restrictions for IP and source access
server.php
##2. Use curl to access normally
deny access
3. Use curl to simulate IP and source for access
Simulation source
curl_setopt($ch, CURLOPT_REFERER, 'source');Simulation ip
curl_setopt ($ch, CURLOPT_HTTPHEADER, array('CLIENT-IP: simulated ip','X-FORWARDED-FOR: simulated ip'));The complete code is as follows:
allow access
The above is the entire content of this article, I hope it will be useful for everyone’s learning help.PHPBasic knowledge review_php basics
PHPCorrectly parse UTF-8 string skills application_php basics
php realizes image uploading and cutting functions_php skills
The above is the detailed content of PHP implements the method of using curl to simulate IP and source for access. For more information, please follow other related articles on the PHP Chinese website!