wordpress饼干外卡

时间:2011-04-23 07:59:28

标签: php wordpress cookies

wordpress将cookie命名为

wordpress_logged_in_bbfa5b726c6b7a9cf3cda9370be3ee91

_in之后的部分对每个用户都不同。有没有办法可以在

中使用外卡
$_COOKIE["wordpress_logged_in_bbfa5b726c6b7a9cf3cda9370be3ee91"]

类似

$_COOKIE["wordpress_logged_in_%"]

1 个答案:

答案 0 :(得分:3)

您必须循环遍历整个$ _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