php 打印出字符串的16进制
来源:程序员人生 发布时间:2014-02-01 08:49:08 阅读次数:3910次
下面这个函数是一个php 打印出字符串的16进制实例,这里面的核心函数就是 chr获取二进制然后再进行转成16进制数,代码如下:
- <?php
-
-
-
- function hex_dump($data, $newline="n")
- {
- static $from = '';
- static $to = '';
-
- static $width = 16; # number of bytes per line
-
- static $pad = '.'; # padding for non-visible characters
-
- if ($from==='')
- {
- for ($i=0; $i<=0xFF; $i++)
- {
- $from .= chr($i);
- $to .= ($i >= 0x20 && $i <= 0x7E) ? chr($i) : $pad;
- }
- }
-
- $hex = str_split(bin2hex($data), $width*2);
- $chars = str_split(strtr($data, $from, $to), $width);
-
- $offset = 0;
- foreach ($hex as $i => $line)
- {
- echo sprintf('%6X',$offset).' : '.implode(' ', str_split($line,2)) . ' [' . $chars[$i] . ']' . $newline;
- $offset += $width;
- }
- }
-
- $info="this is a testx00x99hex_dump";
- print_r(hex_dump($info));
-
-
-
-
-
-
-
- ?>
生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠