62

在 PHP 中的这两种类型之间进行转换时遇到了问题。这是我在谷歌搜索的代码

function strToHex($string){
    $hex='';
    for ($i=0; $i < strlen($string); $i++){
        $hex .= dechex(ord($string[$i]));
    }
    return $hex;
}


function hexToStr($hex){
    $string='';
    for ($i=0; $i < strlen($hex)-1; $i+=2){
        $string .= chr(hexdec($hex[$i].$hex[$i+1]));
    }
    return $string;
}

当我使用 XOR 加密时,我检查并发现了这一点。

我有 string "this is the test",在用一个键 XOR 之后,我有 string 的结果↕↑↔§P↔§P ♫§T↕§↕。之后,我尝试通过函数 strToHex() 将其转换为十六进制,我得到了这些12181d15501d15500e15541215712. 然后,我用函数 hexToStr() 进行了测试,我得到了↕↑↔§P↔§P♫§T↕§q. 那么,我应该怎么做才能解决这个问题呢?为什么我转换这 2 样式值时会出错?

4

8 回答 8

111

对于最终来到这里并且只是在寻找(二进制)字符串的十六进制表示的人。

bin2hex("that's all you need");
# 74686174277320616c6c20796f75206e656564

hex2bin('74686174277320616c6c20796f75206e656564');
# that's all you need

文档:bin2hexhex2bin

于 2018-04-27T06:25:34.893 回答
56

对于任何带有 ord($char) < 16 的字符,你会得到一个只有 1 长的 HEX。您忘记添加 0 填充。

这应该解决它:

<?php
function strToHex($string){
    $hex = '';
    for ($i=0; $i<strlen($string); $i++){
        $ord = ord($string[$i]);
        $hexCode = dechex($ord);
        $hex .= substr('0'.$hexCode, -2);
    }
    return strToUpper($hex);
}
function hexToStr($hex){
    $string='';
    for ($i=0; $i < strlen($hex)-1; $i+=2){
        $string .= chr(hexdec($hex[$i].$hex[$i+1]));
    }
    return $string;
}


// Tests
header('Content-Type: text/plain');
function test($expected, $actual, $success) {
    if($expected !== $actual) {
        echo "Expected: '$expected'\n";
        echo "Actual:   '$actual'\n";
        echo "\n";
        $success = false;
    }
    return $success;
}

$success = true;
$success = test('00', strToHex(hexToStr('00')), $success);
$success = test('FF', strToHex(hexToStr('FF')), $success);
$success = test('000102FF', strToHex(hexToStr('000102FF')), $success);
$success = test('↕↑↔§P↔§P ♫§T↕§↕', hexToStr(strToHex('↕↑↔§P↔§P ♫§T↕§↕')), $success);

echo $success ? "Success" : "\nFailed";
于 2013-08-29T09:16:25.067 回答
34

PHP:

字符串到十六进制:

implode(unpack("H*", $string));

十六进制转字符串:

pack("H*", $hex);
于 2017-09-21T13:02:05.523 回答
13

这是我使用的:

function strhex($string) {
  $hexstr = unpack('H*', $string);
  return array_shift($hexstr);
}
于 2016-03-08T21:30:35.280 回答
1
function hexToStr($hex){
    // Remove spaces if the hex string has spaces
    $hex = str_replace(' ', '', $hex);
    return hex2bin($hex);
}
// Test it 
$hex    = "53 44 43 30 30 32 30 30 30 31 37 33";
echo hexToStr($hex); // SDC002000173

/**
 * Test Hex To string with PHP UNIT
 * @param  string $value
 * @return 
 */
public function testHexToString()
{
    $string = 'SDC002000173';
    $hex    = "53 44 43 30 30 32 30 30 30 31 37 33";
    $result = hexToStr($hex);

    $this->assertEquals($result,$string);
}
于 2017-04-12T14:03:37.937 回答
1

使用@bill-shirley 回答并稍加补充

function str_to_hex($string) {
$hexstr = unpack('H*', $string);
return array_shift($hexstr);
}
function hex_to_str($string) {
return hex2bin("$string");
}

用法:

  $str = "Go placidly amidst the noise";
  $hexstr = str_to_hex($str);// 476f20706c616369646c7920616d6964737420746865206e6f697365
  $strstr = hex_to_str($str);// Go placidly amidst the noise
于 2017-10-31T23:13:38.890 回答
0

我只有一半的答案,但我希望它是有用的,因为它增加了 unicode (utf-8) 支持

    /**
     * hexadecimal to unicode character
     * @param  string  $hex
     * @return string
     */
    function hex2uni($hex) { 
      $dec = hexdec($hex);
        if($dec < 128) {
            return chr($dec);
        }
        if($dec < 2048) {
            $utf = chr(192 + (($dec - ($dec % 64)) / 64));
        } else {
            $utf = chr(224 + (($dec - ($dec % 4096)) / 4096));
            $utf .= chr(128 + ((($dec % 4096) - ($dec % 64)) / 64));
        }
        return $utf . chr(128 + ($dec % 64));
    }

串起来

    var_dump(hex2uni('e641'));

基于:http ://www.php.net/manual/en/function.chr.php#Hcom55978

于 2014-04-22T14:05:15.507 回答
0

您可以尝试以下代码将图像转换为十六进制字符串

<?php
$image = 'sample.bmp';
$file = fopen($image, 'r') or die("Could not open $image");
while ($file && !feof($file)){
$chunk = fread($file, 1000000); # You can affect performance altering
this number. YMMV.
# This loop will be dog-slow, almost for sure...
# You could snag two or three bytes and shift/add them,
# but at 4 bytes, you violate the 7fffffff limit of dechex...
# You could maybe write a better dechex that would accept multiple bytes
# and use substr... Maybe.
for ($byte = 0; $byte < strlen($chunk); $byte++)){
echo dechex(ord($chunk[$byte]));
}
}
?>
于 2018-11-10T07:01:30.737 回答