Home  >  Article  >  Backend Development  >  document.cookie sets cookies using array method in php

document.cookie sets cookies using array method in php

WBOY
WBOYOriginal
2016-07-29 08:44:511261browse

复制代码 代码如下:


        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_cr
                                if($val_cr
                                        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;
        }
?>

以上就介绍了document.cookie php中用数组的方法设置cookies,包括了document.cookie方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

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