轉換函式
/** * [字串轉換為(2,8,16進位)ASCII碼] * @param string $str [待處理字串] * @param boolean $encode [字串轉換為ASCII|ASCII轉換為字串] * @param string $intType [2,8,16進位標示] * @return string byte_str [處理結果] * @author alexander */function strtoascii($str, $encode=true, $intType="2"){ if($encode == true){ $byte_array = str_split($str); foreach($byte_array as &$value){ $value = ord($value); switch ($intType) { case 16: $value = sprintf("%02x", $value); break; case 8: $value = sprintf("%03o", $value); break; default: $value = sprintf("%08b", $value); break; } } unset($value); $byte_str = implode('', $byte_array); } else{ $chunk_size = $intType == 16 ? 2 : ($intType == 8 ? 3 : 8); $byte_array = chunk_split($str, $chunk_size); $byte_array = array_filter(explode("\r\n", $byte_array)); foreach($byte_array as &$value){ $fun_name = $intType == 16 ? 'hexdec' : ($intType == 8 ? 'octdec' : 'bindec'); $value = $fun_name($value); $value = chr($value); } unset($value); $byte_str = implode('', $byte_array); } return $byte_str;}
PHP中的多進位
PHP 整型值可以使用十進位,十六進位,八進位或二進位表示,前面可以加上可選的符號(- 或者 +)。
二進位:[+-]?0b[01]+
八進位:[+-]?0[1-7]+
十進位:[+-]?[1-9][0-9]*|0
十六進位:[+-]?[xX][0-9a-fA-F]+
多進位轉換函式:
bindec |
二進位轉換為十進位 |
decbin |
十進位轉換為二進位 |
octdec |
八進位轉換為十進位 |
decoct |
十進位轉換為八進位 |
hexdec |
十六進位轉換為十進位 |
dechex |
十進位轉換為十六進位 |
以上就介紹了PHP中字串與多進位轉換函式,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。