curl cookiejar にクッキーを保存しようとしています。コードを単純化しましたが、機能しません。
<?php
$cookie_file = './cookies.txt';
if (! file_exists($cookie_file) || ! is_writable($cookie_file)){
echo 'Cookie file missing or not writable.';
exit;
}//cookie_file is writable, so this is not the issue
$ch = curl_init (html_entity_decode("http://localhost/kiala_test/setcookie.php"));
curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookie_file);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, 1);
//curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$output = curl_exec ($ch);
echo $output;
?>
setcookie.php
<?php
$value = 'something from somewhere';
setcookie("TestCookie", $value);
?>
受信したヘッダー
HTTP/1.1 200 OK 日付: 2013 年 10 月 10 日木曜日 12:10:37 GMT サーバー: Apache/2.4.4 (Win64) PHP/5.4.12 X-Powered-By: PHP/5.4.12 Set-Cookie: TestCookie=何か + から + どこか Content-Length: 0 Content-Type: text/html
testcookie はヘッダーにありますが、cookiefile は空のままです。私が間違っていることは何ですか?この例を機能させるにはどうすればよいですか? ありがとう!