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.
たとえば、明日 (08-16) などのカスタムの日に Cookie の有効期限が切れるようにします。
setcookie("Cookie_name", "Cookie_value", time()+86400);
しかし、私が Web にアクセスすると (08-17)、Cookie は 08-18 に期限切れになります
カスタムの日に Cookie の有効期限が切れるようにするにはどうすればよいですか?
必要な日付のタイムスタンプを作成するために使用strtotime()します。
strtotime()
setcookie("Cookie_name", "Cookie_value", strtotime('2013-08-16'));