PHP如何模拟不同虚拟ip访问网站
在做网站时,为了测试某个IP是否能正常访问网站,我们可以使用PHP来模拟这个IP来访问网站,然后来查看访问后的效果即可。
那么如何使用PHP来模拟不同虚拟ip访问网站呢?方法很简单,只需要运行以下的PHP代码即可。
<?php
function doCurl($url, $data=array(), $header=array(), $referer='', $timeout=30){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
// 模拟来源
curl_setopt($ch, CURLOPT_REFERER, $referer);
$response = curl_exec($ch);
if($error=curl_error($ch)){
die($error);
}
curl_close($ch);
return $response;
}
// 调用
$url = 'http://www.example.com/server.php';
$data = array();
// 设置IP
$header = array(
'CLIENT-IP: 192.168.1.100',
'X-FORWARDED-FOR: 192.168.1.100'
);
// 设置来源
$referer = '设置访问网站域名';
$response = doCurl($url, $data, $header, $referer, 5);
echo $response;
?>
通过文件来模拟某个IP,这样来查看访问结果,就可以测试出是否屏蔽这个IP了。