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. static $width = 16; # number of bytes per line
  10. static $pad = '.'; # padding for non-visible characters
  11. if ($from==='')
  12. {
  13. for ($i=0; $i<=0xFF; $i++)
  14. {
  15. $from .= chr($i);
  16. $to .= ($i >= 0x20 && $i <= 0x7E) ? chr($i) : $pad;
  17. }
  18. }
  19. $hex = str_split(bin2hex($data), $width*2);
  20. $chars = str_split(strtr($data, $from, $to), $width);
  21. $offset = 0;
  22. foreach ($hex as $i => $line)
  23. {
  24. echo sprintf('%6X',$offset).' : '.implode(' ', str_split($line,2)) . ' [' . $chars[$i] . ']' . $newline;
  25. $offset += $width;
  26. }
  27. }
  28. $info="this is a testx00x99hex_dump";
  29. print_r(hex_dump($info));
  30. /*
  31. 输出结果:
  32. 0 : 74 68 69 73 20 69 73 20 61 20 74 65 73 74 00 99 [this is a test..]
  33. 10 : 68 65 78 5f 64 75 6d 70 [hex_dump]
  34. */
  35. ?>