有 PHP 函数可以转换 Cookie 中的无效字符吗?
我得到这个:警告:Cookie 值不能包含以下任何内容 ',; \t\r\n\013\014'
有没有删除这些的功能?并将“+”号转换为 %2B ?
I got this: Warning: Cookie values can not contain any of the following ',; \t\r\n\013\014'
is there a function to remove those? and also convert the "+" sign in to %2B ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试 urlencode($cookie_value);
try
urlencode($cookie_value);
最后,我使用 base64_encode 来做到这一点。
At last, I use base64_encode to do that.