WordPress cookie 通配符
wordpress将cookie命名为
wordpress_logged_in_bbfa5b726c6b7a9cf3cda9370be3ee91,
_in之后的部分对于每个用户来说都是不同的。有没有办法可以将它与通配符一起使用,
$_COOKIE["wordpress_logged_in_bbfa5b726c6b7a9cf3cda9370be3ee91"]
例如
$_COOKIE["wordpress_logged_in_%"]
wordpress names cookies like
wordpress_logged_in_bbfa5b726c6b7a9cf3cda9370be3ee91
the part after _in is different for every user. Is there a way I can use it with wild card in
$_COOKIE["wordpress_logged_in_bbfa5b726c6b7a9cf3cda9370be3ee91"]
so something like
$_COOKIE["wordpress_logged_in_%"]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须循环遍历整个 $_COOKIE 数组以查看它是否与模式匹配:
You will have to loop through the entire $_COOKIE array to see if it matches the pattern: