zoukankan      html  css  js  c++  java
  • PHP字符串与字节转换示例

    <?php 
    
    /** 
    
    * byte数组与字符串转化类 
    
    */
    
    class Bytes { 
    
    
    /** 
    
    * 转换一个String字符串为byte数组 
    
    * @param $str 需要转换的字符串 
    
    * @param $bytes 目标byte数组 
    
    * @author Zikie 
    
    */
        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 .= 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 <<= 8; 
            $val |= $bytes[$position + 2] & 0xff; 
            $val <<= 8; 
            $val |= $bytes[$position + 1] & 0xff; 
            $val <<= 8; 
            $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 << 8; 
            $val |= $bytes[$position] & 0xFF; 
            return $val; 
        } 
    
    } 
    ?>
  • 相关阅读:
    什么是面向对象以及实现类的封装
    验证码的实现
    cookie和session简单的用法
    类似百度的分页的函数
    实现登陆功能

    微信公众号开发
    常量的注意
    php数组转换成xml格式数据
    xml格式数据转数组的函数
  • 原文地址:https://www.cnblogs.com/lxwphp/p/15453140.html
Copyright © 2011-2022 走看看