web-dev-qa-db-ja.com

PHP文字列を16進数に、16進数を文字列に変換

PHPでこの2つのタイプを変換すると問題が発生しました。これはGoogleで検索したコードです

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を使用して暗号化するときにこれを見つけました。

文字列"this is the test"があり、キーを持つXORの後に、文字列↕↑↔§P↔§P ♫§T↕§↕の結果があります。その後、関数strToHex()によって16進数に変換しようとしましたが、これらの12181d15501d15500e15541215712を取得しました。次に、hexToStr()関数でテストしたところ、↕↑↔§P↔§P♫§T↕§qがあります。この問題を解決するにはどうすればよいですか?この2スタイルの値を変換すると、なぜ間違っているのですか?

38
JoeNguyen

Ord($ char)<16のcharの場合、1だけの16進数が返されます。 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";
47
boomla

最終的にここに来て、(バイナリ)文字列の16進表現を探している人のために。

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

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

PHP

16進数の文字列:

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

hex to string:

pack("H*", $hex);
26
زياد

私が使用するものは次のとおりです。

function strhex($string) {
  $hexstr = unpack('H*', $string);
  return array_shift($hexstr);
}
13
Bill Shirley
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);
}
1
Kamaro Lambert

次のコードを試して、画像を16進文字列に変換できます。

<?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]));
}
}
?>
0

答えは半分しかありませんが、Unicode(utf-8)のサポートが追加されるので役立つと思います

//decimal to unicode character
function unichr($dec) { 
  if ($dec < 128) { 
    $utf = chr($dec); 
  } else if ($dec < 2048) { 
    $utf = chr(192 + (($dec - ($dec % 64)) / 64)); 
    $utf .= chr(128 + ($dec % 64)); 
  } else { 
    $utf = chr(224 + (($dec - ($dec % 4096)) / 4096)); 
    $utf .= chr(128 + ((($dec % 4096) - ($dec % 64)) / 64)); 
    $utf .= chr(128 + ($dec % 64)); 
  } 
  return $utf;
}

ひもに

var_dump(unichr(hexdec('e641')));

ソース: http://www.php.net/manual/en/function.chr.php#Hcom55978

0
Timo Huovinen

@ bill-shirley answerを少し追加して使用する

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
0
PeterT