从会话数组中获取密钥

发布于 2024-12-11 14:56:23 字数 165 浏览 0 评论 0 原文

我有一个存储在会话中的数组,如下所示:

$_SESSION['shortlistArray'][2];

输出

Peter

但是如何反过来执行此操作并使用“Peter”来获取数组键?

I have an array that is stored in a session like so:

$_SESSION['shortlistArray'][2];

Outputs

Peter

But how do I do this the other way round and use 'Peter' to get the array key?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

悟红尘 2024-12-18 14:56:23

使用数组搜索。它将返回匹配项的键。

Use array_search. It will return the key of the matched item.

锦欢 2024-12-18 14:56:23

如果您必须查找许多值的键,请使用 array_search() 的替代方法="nofollow">array_flip() 交换数组键和值:

$byvalue = array_flip($_SESSION['shortlistArray']);
echo $byvalue['Peter'];

// 2

As an alternative to array_search() if you have to find the keys of many values, use array_flip() to swap array keys and values:

$byvalue = array_flip($_SESSION['shortlistArray']);
echo $byvalue['Peter'];

// 2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文