微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php 打印出字符串的16进制

下面这个函数一个PHP 打印出字符串的16进制实例,这里面的核心函数就是 chr获取二进制然后再进行转成16进制数,代码如下:

  1. <?PHP  
  2. /*  
  3. PHP 打印出字符串的16进制数据  
  4. */ 
  5. function hex_dump($data$newline=n)  
  6. {  
  7.   static $from = '';  
  8.   static $to = '';  
  9.    
  10.   static $width = 16; # number of bytes per line  
  11.    
  12.   static $pad = '.'; # padding for non-visible characters  
  13.    
  14.   if ($from==='')  
  15.   {  
  16.     for ($i=0; $i<=0xFF; $i++)  
  17.     {  
  18.       $from .= chr($i);  
  19.       $to .= ($i >= 0x20 && $i <= 0x7E) ? chr($i) : $pad;  
  20.     }  
  21.   }  
  22.    
  23.   $hex = str_split(bin2hex($data), $width*2);  
  24.   $chars = str_split(strtr($data$from$to), $width);  
  25.    
  26.   $offset = 0;  
  27.   foreach ($hex as $i => $line)  
  28.   {  
  29.     echo sprintf('%6X',$offset).' : '.implode(' 'str_split($line,2)) . ' [' . $chars[$i] . ']' . $newline;  
  30.     $offset += $width;  
  31.   }  
  32. }  
  33.    
  34. $info=this is a testx00x99hex_dump;  
  35. print_r(hex_dump($info));  
  36. /*  
  37. 输出结果:  
  38.    
  39. 0 : 74 68 69 73 20 69 73 20 61 20 74 65 73 74 00 99 [this is a test..]  
  40.    
  41. 10 : 68 65 78 5f 64 75 6d 70 [hex_dump]  
  42. */ 
  43. ?> 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐