教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 php cookie cn域名规范

php cookie cn域名规范

发布时间:2016-10-29   编辑:jiaochengji.com
教程集为您提供php cookie cn域名规范等资源,欢迎您收藏本站,我们将为您提供最新的php cookie cn域名规范资源
以前真没在意cookie的作用域问题,可能以前用.com域名没出过问题,今天用公司的一个cn域名测试,怎么也不能实现cookie共享,后来采用js设置cookie,在另外一台服务器上共享cookie成功,真叫气人!翻阅了一下php的cookie 规范 ,里面有这么一段

Only hosts within the specified domain can set a cookie for a domain and domains must have at least two (2) or three (3) periods in them to prevent domains of the form: ".com", ".edu", and "va.us". Any domain that fails within one of the seven special top level domains listed below only require two periods. Any other domain requires at least three. The seven special top level domains are: "COM", "EDU", "NET", "ORG", "GOV", "MIL", and "INT".

看出来了吧,真他娘的草蛋!除了"COM", "EDU", "NET", "ORG", "GOV", "MIL", and "INT"这几个后缀的域名可以设置二级作用域,其他的域名至少三级才可以,也就是说想通过设置作用域为b.cn来实现a.b.cn和c.b.cn下的 cookie共享用php是不行的,php只能实现作用域b.a.cn下的d.b.a.cn和e.b.a.cn间的cookie共享,希望大家注意,再遇到此类问题,别浪费时间拼命的测试了……

您可能感兴趣的文章:
php cookie cn域名规范
PHP设置setcookie的方法实例
实现跨域名Cookie
深入分析理解session与cookie的作用
servlet与jsp基础教程(9)-处理Cookie
php 给cookie赋值之setcookie()用法
php setcookie 用法
jsp中cookie 读写操作详解介绍
PHP如何操作Cookie?
php cookie类(用到了命名空间)

[关闭]
~ ~