Skip to content

Instantly share code, notes, and snippets.

View jigzstar's full-sized avatar

Joakim George jigzstar

  • Saint Lucia NIC
  • Castries, Saint Lucia
View GitHub Profile
@miguelmota
miguelmota / util.php
Last active January 7, 2024 16:07
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);
}