我想通過cUrl作者:文件內容(沒有的file_get_contents功能),但我不能,捲曲打開它捲曲會無法訪問文件,但瀏覽器
我的鏈接是here
我測試了我與requestb.in託管和結果
$header = array();
$header[] = 'Accept-Encoding: gzip';
$header[] = 'Connection: close';
$header[] = 'Host: panel.1n3k.com';
$header[] = 'User-Agent: runscope-radar/2.0';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1);
$response = curl_exec($ch);
$header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);
$header = substr($response, 0, $header_size);
$body = substr($response, $header_size);
curl_close($ch);
我試圖與代理CURLOPT_USERAGENT
與我的瀏覽器的代理。
CURLOPT_REFERER
,CURLOPT_ENCODING
,CURLOPT_AUTOREFERER
一個接一個,但沒有人能幫助我...
這可怎麼更多鈔票?
不可能告訴沒有更多的信息,可能是一個服務器端重定向,JavaScript等 – jeroen
我使用panel.1n3k.com htaccess的但我可以通過瀏覽器訪問? – ahmetertem