从会话值中提取值 - 使用 php unserialize、preg_split 或其他工具
我有一个包含以下字符串的会话变量。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
unserialize
是迄今为止最可靠的,因为 PHP 的会话内部实现可能会发生变化。unserialize
is by far the most reliable, as PHP's internal implementation of sessions may change.