当前位置:首页 > PHP教程 > php函数 > 列表

php 打印出字符串的16进制

发布:smiling 来源: PHP粉丝网  添加日期:2014-01-12 09:53:27 浏览: 评论:0 

下面这个函数是一个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. ?> 

Tags: php 打印 16进制

分享到: