WordPress cookie 通配符

发布于 2024-11-03 03:36:56 字数 300 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

居里长安 2024-11-10 03:36:56

您必须循环遍历整个 $_COOKIE 数组以查看它是否与模式匹配:

$matches = array();
foreach($_COOKIE as $key => $value) {
  if(substr($key, 0, 20) == 'wordpress_logged_in_') {
    $matches[] = $key;
  }
}
//$matches now contains the key of all matching cookies

You will have to loop through the entire $_COOKIE array to see if it matches the pattern:

$matches = array();
foreach($_COOKIE as $key => $value) {
  if(substr($key, 0, 20) == 'wordpress_logged_in_') {
    $matches[] = $key;
  }
}
//$matches now contains the key of all matching cookies
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文