从会话值中提取值 - 使用 php unserialize、preg_split 或其他工具

发布于 2024-09-10 02:31:10 字数 491 浏览 6 评论 0原文

我有一个包含以下字符串的会话变量。

a:2:{s:7:"LoginId";s:32:"361aaeebef992bd8b57cb3e8d";s:8:"Username";s:6:"aaaaaa";}

回声 $_SESSION["SecurityAccess_CustomerAccess"];

我正在尝试提取用户名“aaaaaa”。 unserialize、preg_split 或其他的什么组合可以让我最快到达那里?

到目前为止的尝试...

$session_data = unserialize($_SESSION["SecurityAccess_CustomerAccess"]);
$session_user_array = preg_split('%;%', $_SESSION["SecurityAccess_CustomerAccess"]);
echo $session_user_array[3];

I have a session variable that contains the following string.

a:2:{s:7:"LoginId";s:32:"361aaeebef992bd8b57cb3e8d";s:8:"Username";s:6:"aaaaaa";}

echo $_SESSION["SecurityAccess_CustomerAccess"];

I am trying to extract the username "aaaaaa".
What combination of unserialize, preg_split or other will get me there fastest?

attempts so far...

$session_data = unserialize($_SESSION["SecurityAccess_CustomerAccess"]);
$session_user_array = preg_split('%;%', $_SESSION["SecurityAccess_CustomerAccess"]);
echo $session_user_array[3];

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

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

发布评论

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

评论(1

ぃ弥猫深巷。 2024-09-17 02:31:10

unserialize 是迄今为止最可靠的,因为 PHP 的会话内部实现可能会发生变化。

unserialize is by far the most reliable, as PHP's internal implementation of sessions may change.

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