我已經嘗試了很多方法來嘗試獲取url的內容,並使用影響輸出的哈希值。我真的不知道該如何解釋,但這裏有一個例子...file_get_contents包含哈希信息
這樣做:
echo file_get_contents('test.com/whatever.php?t1=1&t2=2#this');
將返回相同的結果:
echo file_get_contents('test.com/whatever.php?t1=1&t2=2');
即使如果我瀏覽到它在我的網絡瀏覽器中會有所作爲。當然,上面的網址並不是我正在使用的實際網址,但我希望你明白。
事情我已經嘗試:
捲曲:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
的file_get_contents:
file_get_contents($url);
FREAD:
//don't know where I put the code.
這些都是我試過的事情,和不要回憶除了這裏,你知道下一步該去哪裏。我真的不確定這是否可能,但我希望它是。
感謝您的幫助,sh042067。