下面我们一起来看和篇关于php bcd码压缩-把十进制数字压缩到十六进制数据中实例,希望文章给各位同学带来帮助哦。
例,php bcd码压缩-把十进制数字压缩到十六进制数据中,代码如下:
- <?php
-
-
-
-
- $string = '0091';
- $bytes = Bytes::getBytes($string);
- print_r($bytes);
-
-
-
-
-
-
-
-
-
-
-
-
-
- $asc=Bytes::AscToHex($bytes,4);
-
- print_r($asc);
-
-
-
-
-
-
-
-
-
- echo Bytes::toStr($asc);
-
-
-
- $hex=Bytes::HexToAsc($asc,2);
-
- print_r($hex);
-
-
-
-
-
-
-
-
-
-
-
-
-
- ?>
例,把十进制数字压缩到十六进制数据中,代码如下:
- <?php
-
-
-
-
-
-
-
-
-
-
-
- class Bytes {
-
-
-
-
-
-
-
-
-
-
-
-
- public static function getBytes($string) {
-
- $bytes = array();
- for($i = 0; $i < strlen($string); $i++){
- $bytes[] = ord($string[$i]);
- }
- return $bytes;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public static function toStr($bytes) {
- $str = '';
- foreach($bytes as $ch) {
- $str .= bin2hex(chr($ch));
- }
-
- return $str;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public static function AscToHex( $asc, $AscLen) {
- $i=0;
- $Hex=array();
- for($i = 0; 2*$i < $AscLen; $i++)
- {
-
-
- $Hex[$i] = (chr($asc[2*$i]) << 4);
- if (!(chr($asc[2*$i]) >= '0' && chr($asc[2*$i]) <= '9' )){
- $Hex[$i] += 0x90;
- }
-
- if(2*$i+1 >= $AscLen){
- break;
- }
-
- $Hex[$i] |= (chr($asc[2*$i+1]) & 0x0f);
- if (!(chr($asc[2*$i+1]) >= '0' && chr($asc[2*$i+1]) <= '9' )){
- $Hex[$i] += 0x09;
- }
-
- }
- return $Hex;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public static function HexToAsc($Hex, $HexLen) {
- $i=0;
- $Temp=0;
- for($i = 0; $i < $HexLen; $i++ )
- {
- $Temp = ($Hex[$i] & 0xf0) >> 4;
- if ($Temp < 10){
- $Asc[2*$i] = (0x30 + $Temp);
- }else{
- $Asc[2*$i] = (0x37 + $Temp);
- }
-
- $Temp = $Hex[$i] & 0x0f;
- if ($Temp < 10){
- $Asc[2*$i+1] = (0x30 + $Temp);
- }else{
- $Asc[2*$i+1] = (0x37 + $Temp);
- }
-
- }
- return $Asc;
- }
-
- }
- ?>
|