php curl 重新導向問題
剛接觸curl想用curl post資訊,並且重新導向到目的頁面(帶著發送的POST資訊重新導向)
$url = "http://localhost/opms/WebContent/test_output.php";
$post_data = array (
"foo" => "bar",
"query" => "Nettuts",
"action" => "Submit"
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION ,true);
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookie.txt');
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
curl_setopt($ch, CURLOPT_MAXREDIRS,10);
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
$output = curl_exec($ch);
curl_close($ch);
照著網上的東西設定了很多也不知道有沒有用,只不過想讓最後地址欄的地址變為test_output.php,但總不成功。
是不是curl根本就不能跳轉?還是我設定問題,求各位大大解答,謝謝!
------解決方案--------------------
CURLOPT_FOLLOWLOCATION 的意思是:
當目標頁出現跳轉,即 http 頭中有 Location 指令時,跟著讀取新的目標頁
如果沒有設定該屬性,則 curl 只會讀取一頁