Home > php教程 > php手册 > php 读取memcache二进制数据

php 读取memcache二进制数据

WBOY
Release: 2016-06-13 10:58:41
Original
978 people have browsed it

memcache作为一个数据中间层,经常用来做数据交换。


比如在某个系统内部我们规定如下的用户状态的信息,每个用户只需要存续52个字节。
Key state#ID 如”state#10888”
Value : (二进制的数据 )
 用户 ID Uint32
Type 用户类型 Uint8 :
State 用户状态 Uint8 : 
 服务器 IP Uint32
最后在线时间 Uint64
Session ID的长度  Uint16

Session ID  char[32]

总共52个字节 


那么怎么在php里面得到通过memcache得到上面的这些数据呢?


存储的数据里面有二进制的0,字符串是否会被截断?


其实不会的!


下面进行测试


          $mem = new Memcache();
   
          $mem->connect('192.168.0.69',11211);
        
          $memstr= $mem->get('state#105709');
        
          var_dump($memstr);
 会得到下面的输出。可以看到 memstr 刚好是53个字节。sessionId有个结束符
  string(53) "頊括F>� R!8jWFmsIK41kBDkmlqC7m7QoWICQ8nzz7"


再进一步,我们把数据输出到一个文件,用winhex来查看数据的状态


          file_put_contents('./dd.txt',$memstr);


用winhex dd.txt 会看到十六进制数据。


ED9C01000001C0A800463EF60A520000000100386A57466D73494B34316B42446B6D6C7143376D37516F57494351386E7A7A3700

 


下面我就可以按字节取数据了,主要是利用ord函数获取字节ASCII码


          $type =  ord($memstr{4});
         
          $state = ord($memstr{5});
         
          $ip = ord($memstr{6}).'.'.ord($memstr{7}).'.'.ord($memstr{8}).'.'.ord($memstr{9});
         
          $ses_long = ord($memstr{19})*16+ord($memstr{18});

          //时间戳只需要4个字节,分配了8个字节
         $lastactive = ord($memstr{13})*16777216+ord($memstr{12})*65536+ord($memstr{11})*256+ord($memstr{10});

          $sessionid = substr($memstr,20,$ses_long);

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template