最初に Cookie を作成したとき、次のページが読み込まれるまで同じ Cookie を取得できないようです。ページが 2 度目に要求されるまで、Cookie がブラウザに存在しないかのようです。
Kohana PHP フレームワークを使用しています。
Cookie::set('new_cookie', 'I am a cookie');
$cookie = Cookie::get('new_cookie');
//$cookie is NULL the first time this code is run. If I hit the page again
and then call Cookie:get('new_cookie'), the cookie's value is read just fine.
そのため、これは正常な動作であり、おそらく Cookie の仕組みを理解していないと思い込んでいます。誰かが私のためにこれを明確にすることができますか?