php 쿠키 배열

1432 단어 cookie
http://blog.sina.com.cn/s/blog_610997850100oh5n.html
오늘 엑셀 가 져 오기 편집 할 때 이 걸 사용 합 니 다.
          cookie  ?
          ,        (         ?)    
a.php
<?
$cart_info[0][0] = "1123";
$cart_info[1][0] = "5334521";
$cart_info[1][2] = "df";
$cart_info[4][2] = "fefe";

setcookie("xia",serialize($cart_info));
?>

b.php
<?
$other = StripSlashes($_COOKIE['xia']);
print_r(unserialize($other));
?>

// js   cookie
//
var name = "str1";
var
function SetCookie(name,value)//    ,   cookie   ,    
{
    var Days = 30; //  cookie      30  
    var exp  = new Date();    //new Date("December 31, 9998");
    exp.setTime(exp.getTime() + Days*24*60*60*1000);
    document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString();
}
function getCookie(name)// cookies         
{
    var arr = document.cookie.match(new RegExp("(^| )"+name+"=([^;]*)(;|$)"));
     if(arr != null) return (arr[2]); return null;

}
function delCookie(name)//  cookie
{
    var exp = new Date();
    exp.setTime(exp.getTime() - 1);
    var cval=getCookie(name);
    if(cval!=null) document.cookie= name + "="+cval+";expires="+exp.toGMTString();
}

SetCookie ("xiaoqi", "3")

좋은 웹페이지 즐겨찾기