session 파기할 때 cookie 삭제하려고 했는데
itcookbook series php 프로그래밍 입문 에서는
session("name");
으로 value 지정 안해주면 값 삭제 된다고 하고,
php.net 가니까
Example #2 setcookie() delete example
When deleting a cookie you should assure that the expiration date is in the past, to trigger the removal mechanism in your browser. Examples follow how to delete cookies sent in previous example:
<?php
// set the expiration date to one hour ago
setcookie ("TestCookie", "", time() - 3600);
setcookie ("TestCookie", "", time() - 3600, "/~rasmus/", ".example.com", 1);
?>
장난치냐?
setcookie("name", "value", 0, "domain");
하면서 세번째 time 을 0으로 줘서 그런지 안되잖아 ㄱ-
setcookie("name", false);
해줬더니 어이쿠 감사 ㅋㄷㅋㄷ
boolean 만만세군여
////
나중엔 이것도 안되서 그냥 "" 넣고 값 확인하는 function 만들어서 썼음 -_-..
'Dev./Sec. Study > PHP' 카테고리의 다른 글
DIARY :: Calendar + Scheduling (0) | 2007.06.04 |
---|---|
PHP 태그 연습장 (2) | 2007.04.24 |
글자 색 바꾸기 (0) | 2007.04.24 |