PHP:sscanf从双引号内的字符串中提取值
我正在尝试解析会话字符串中双引号内包含的 2 个值。其他字符串变量不是常量,因此不能使用任何附加字符作为标记。我只需要引用的值。我的以下 sscanf 函数不完整。
$string = 'a:1:{s:14:"174.29.144.241";s:8:"20110508";}';
sscanf($string,'%[^"]', $login_ip, $login_date);
echo $login_ip;
echo $login_date;
感谢您的帮助。
I'm trying to parse the 2 values contained within double quotes from a session string. The other string variables are not constant and therefore can not use any additional characters as markers. I only need the quoted values. My following sscanf function is incomplete.
$string = 'a:1:{s:14:"174.29.144.241";s:8:"20110508";}';
sscanf($string,'%[^"]', $login_ip, $login_date);
echo $login_ip;
echo $login_date;
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
该数据只是来自
serialize()
的 PHP 序列化文本,在这种情况下,您可以通过以下方式获取所需的数据:
That data is just PHP serialized text from
serialize()
In which case you can get at the data you need with:
这应该返回您的 IP 地址。查阅 php.net
This should return your ip address. consult php.net
您可以使用正则表达式来做到这一点。
第一个引用的值将转到 ip,第二个引用的值将转到 ip。
You can use regex to do that.
First quoted value will go to ip, second to date.
一个有趣的技巧是使用“作为分隔符来使用爆炸,如下所示:
双引号中的任何值都将在奇数索引中返回,即 $res[1], $res[3]
An interesting hack would be to use explode using " as the separator like this:
Any value in double quotes would be returned in an odd index i.e $res[1], $res[3]