Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
単一の Cookieに複数の値を保存し、同じ Cookie に値を追加し続けるにはどうすればよいですか。
例えば:
user_id 1 が post_id 1 に投票した場合、(1, 1) を Cookie に保存します。
user_id 1 が post_id 2 に投票した場合、同じ Cookie を値 (1,2) で更新したいと考えています。
ありがとう。
json を使用して配列を単一の Cookie に格納する
クッキーを設定:
setcookie("myCookie", json_encode(array(1, 2)));
クッキーを取得:
print_r(json_encode($_COOKIE["myCookie"]));