Skip to content

Instantly share code, notes, and snippets.

@ncdn
ncdn / util.php
Created April 11, 2022 16:48 — forked from miguelmota/util.php
PHP byte array to hex, hex to byte array, string to hex, hex to string utility functions
<?php
function string2ByteArray($string) {
return unpack('C*', $string);
}
function byteArray2String($byteArray) {
$chars = array_map("chr", $byteArray);
return join($chars);
}