Home>Article>Backend Development> How to use curl to simulate ip and source for access through php
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.
server.php
Returndeny access
Simulation source
curl_setopt($ch, CURLOPT_REFERER, '来源');
Simulation ip
curl_setopt($ch, CURLOPT_HTTPHEADER, array('CLIENT-IP: 模拟ip','X-FORWARDED-FOR: 模拟ip'));
The complete code is as follows:
Returnallow access
This article explains the relevant knowledge of PHP using curl to simulate IP and source for access. For more related content, please pay attention to PHP Chinese website.
Related recommendations:
Converting NULL data through mysql method
About the PHP function using a variable number of parameters Content
How to call Sina API through php to generate short links
The above is the detailed content of How to use curl to simulate ip and source for access through php. For more information, please follow other related articles on the PHP Chinese website!