web-dev-qa-db-fra.com

PHP convertir une chaîne en hex et hex en chaîne

J'ai eu le problème lors de la conversion entre ce type 2 en PHP. C'est le code que j'ai cherché dans 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;
}

Je le vérifie et découvre cela lorsque j'utilise XOR pour chiffrer.

J'ai la chaîne "this is the test", après XOR avec une clé, le résultat est dans la chaîne ↕↑↔§P↔§P ♫§T↕§↕. Après cela, j'ai essayé de le convertir en hexadécimal par la fonction strToHex () et j'ai eu ces 12181d15501d15500e15541215712. Ensuite, j'ai testé avec la fonction hexToStr () et j'ai ↕↑↔§P↔§P♫§T↕§q. Alors, que dois-je faire pour résoudre ce problème? Pourquoi est-ce que je me trompe lorsque je convertis cette valeur de style 2?

34
JoeNguyen

Pour tout caractère avec ord ($ char) <16, vous obtenez un HEX qui ne fait que 1 long Vous avez oublié d'ajouter 0 padding.

Cela devrait le résoudre:

<?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";
46
boomla

PHP:

chaîne à hex:

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

hex à chaîne:

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

Pour les personnes qui se retrouvent ici et recherchent simplement la représentation hexadécimale d'une chaîne (binaire).

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

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

Voici ce que j'utilise:

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

Vous pouvez essayer le code suivant pour convertir l'image en chaîne hexadécimale 

<?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
bhargav venkatesh

Je n'ai que la moitié de la réponse, mais j'espère que c'est utile car cela ajoute le support 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;
}

Pour ficeler

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

Source: http://www.php.net/manual/fr/function.chr.php#Hcom55978

0
Timo Huovinen

Utiliser @ bill-shirley avec un petit ajout

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

Usage:

  $str = "Go placidly amidst the noise";
  $hexstr = str_to_hex($str);// 476f20706c616369646c7920616d6964737420746865206e6f697365
  $strstr = hex_to_str($str);// Go placidly amidst the noise
0
PeterT