2017-08-11 106 views
0

我想通過代理服務器瀏覽來僞造我在谷歌分析中的位置。我已經創建了腳本,但谷歌分析仍然顯示我的真實位置。如何在PHP中使用代理服務器瀏覽網站

的劇本我現在用的就是

<?php 
$filename = "https://www.example.com"; 
$proxy = "103.250.147.22:8080"; 

$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, $filename); 
curl_setopt($ch, CURLOPT_HEADER, 1); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1); 
curl_setopt($ch, CURLOPT_PROXY, $proxy); 
$data = curl_exec($ch); 
curl_close($ch); 
echo $data; 

?> 

我認爲代理不工作或代碼不工作?任何人都可以告訴我我做錯了什麼?

回答

0

您可以參考這個answer而關於谷歌分析其很難用一個假的位置

$url = 'http://dynupdate.no-ip.com/ip.php'; 
$proxy = '127.0.0.1:8888'; 
//$proxyauth = 'user:password'; 

$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL,$url); 
curl_setopt($ch, CURLOPT_PROXY, $proxy); 
//curl_setopt($ch, CURLOPT_PROXYUSERPWD, $proxyauth); 
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_HEADER, 1); 
$curl_scraped_page = curl_exec($ch); 
curl_close($ch); 

echo $curl_scraped_page; 
+0

它還是一樣的結果,GA是撿我真正的位置 – mohit

相關問題