Heim >Backend-Entwicklung >PHP-Tutorial >php中用数组的方法设置cookies_php技巧

php中用数组的方法设置cookies_php技巧

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-05-17 09:20:09913Durchsuche
复制代码 代码如下:

        function set_cronology($name,$value,$duration=7){
                $duration=time()+(3600*24*$duration);
                $max_stored_values=5;
                if(isset($_COOKIE[$name])){
                        foreach($_COOKIE[$name] as $prop_crono=>$val_crono){
                                if($val_crono==$value)
                                        return;
                        }
                        if($prop_crono                                setcookie($name.'['.($prop_crono+1).']',$value,$duration);
                        else{
                                array_shift($_COOKIE[$name]);
                                setcookie("$name[$max_stored_values]",$value,$duration);
                        }
                }else
                        setcookie($name.'[0]',$value,$duration);
                return;
        }
?>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn