ただ、Javascript と php では encode/decode が違うので、方法を合わせないとやっぱりおかしくなる。
☆Javascript 側
// expires は 2030 年にしてある
document.cookie = 'str=' + encodeURIComponent('化け化け') + '; expires=Tue, 1-Jan-2030 00:00:00 GMT';
document.cookie = 'str=' + encodeURIComponent('化け化け') + '; expires=Tue, 1-Jan-2030 00:00:00 GMT';
☆php 側
$status = rawurldecode($_COOKIE[str]);
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.