Heim  >  Artikel  >  Backend-Entwicklung  >  php字符串与byte字节数组转化类示例_PHP教程

php字符串与byte字节数组转化类示例_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:44:16926Durchsuche

文章给大家提供一个php字符串与byte字节数组转化类示例,希望文章对各位同学会有所帮助。

 代码如下 复制代码
 
/**
 
* byte数组与字符串转化类
 
*/
 
class Bytes {
 
   
/**
    
* 转换一个String字符串为byte数组
    
* @param $str 需要转换的字符串
    
* @param $bytes 目标byte数组
    
* @author Zikie
    
*/
    public static function getBytes($string) {
        $bytes = array();
        for($i = 0; $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 .= chr($ch);
        }
 
           return $str;
    }
 
   
/**
    
* 转换一个int为byte数组
    
* @param $byt 目标byte数组
    
* @param $val 需要转换的字符串
    
*
    
*/
 
    public static function integerToBytes($val) {
        $byt = array();
        $byt[0] = ($val & 0xff);
        $byt[1] = ($val >> 8 & 0xff);
        $byt[2] = ($val >> 16 & 0xff);
        $byt[3] = ($val >> 24 & 0xff);
        return $byt;
    }
 
   
/**
    
* 从字节数组中指定的位置读取一个Integer类型的数据
    
* @param $bytes 字节数组
    
* @param $position 指定的开始位置
    
* @return 一个Integer类型的数据
    
*/
 
    public static function bytesToInteger($bytes, $position) {
        $val = 0;
        $val = $bytes[$position + 3] & 0xff;
        $val         $val |= $bytes[$position + 2] & 0xff;
        $val         $val |= $bytes[$position + 1] & 0xff;
        $val         $val |= $bytes[$position] & 0xff;
        return $val;
    }
 
   
/**
    
* 转换一个shor字符串为byte数组
    
* @param $byt 目标byte数组
    
* @param $val 需要转换的字符串
    
*
    
*/
 
    public static function shortToBytes($val) {
        $byt = array();
        $byt[0] = ($val & 0xff);
        $byt[1] = ($val >> 8 & 0xff);
        return $byt;
    }
 
   
/**
    
* 从字节数组中指定的位置读取一个Short类型的数据。
    
* @param $bytes 字节数组
    
* @param $position 指定的开始位置
    
* @return 一个Short类型的数据
    
*/
 
    public static function bytesToShort($bytes, $position) {
        $val = 0;
        $val = $bytes[$position + 1] & 0xFF;
        $val = $val         $val |= $bytes[$position] & 0xFF;
        return $val;
    }
 
}
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/633109.htmlTechArticle文章给大家提供一个php字符串与byte字节数组转化类示例,希望文章对各位同学会有所帮助。 代码如下 复制代码 ?php /** * byte数组与字符串转...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn