Home >Backend Development >PHP Tutorial >Set cookies using array method in php_PHP tutorial

Set cookies using array method in php_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-21 15:30:001154browse

复制代码 代码如下:

        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<$max_stored_values)
                                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;
        }
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/323295.htmlTechArticle复制代码 代码如下: ?php function set_cronology($name,$value,$duration=7){ $duration=time()+(3600*24*$duration); $max_stored_values=5; if(isset($_COOKIE[$name])){ foreach($_...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn