下面我們一起來看和篇關於php bcd碼壓縮-把十進制數字壓縮到十六進制數據中實例,希望文章給各位同學帶來幫助哦。
例,php bcd碼壓縮-把十進制數字壓縮到十六進制數據中
代碼如下 復制代碼 <?php例,把十進制數字壓縮到十六進制數據中
代碼如下 復制代碼<?php
/**
* php bcd碼壓縮
* 把十進制數字壓縮到十六進制數據中
* @author phpff.com
* Created on 2011-7-15
*/
class Bytes {
/**
* 轉換一個String字符串為byte數組
* @param $str 需要轉換的字符串
* @param $bytes 目標byte數組
* @author phpff.com
*/
public static function getBytes($string) {
$bytes = array();
for($i = 0; $i < strlen($string); $i++){
$bytes[] = ord($string[$i]);
}
return $bytes;
}
/**
* 將字節數組轉化為String類型的數據
* @param $bytes 字節數組
* @param $str 目標字符串
* @return 一個String類型的數據
*/
public static function toStr($bytes) {
$str = '';
foreach($bytes as $ch) {
$str .= bin2hex(chr($ch));
}
return $str;
}
/**
* asc碼轉成16進制數據
* @param $asc asc數字字符串
* @param $AscLen 需要轉換的字符串長度
* @return 16進制數組
* @author phpff.com
*/
public static function AscToHex( $asc, $AscLen) {
$i=0;
$Hex=array();
for($i = 0; 2*$i < $AscLen; $i++)
{
/*A:0x41(0100 0001),a:0x61(0110 0001),右移4位後都是0001,加0x90等0xa*/
$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;
}
/**
* 將16進制的數據轉換成asc碼
* @param $Hex 16進制數組
* @param $HexLen 16進制數組長度
* @return asc數組
* @author phpff.com
*/
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;
}
}
?>