String関数 2024年08月09日 01:38   編集
16進数表現の文字列をデコードする
$str = 'abあい';
$hex = bin2hex($str);
print $hex . "\n";
print hex2bin($hex);
実行結果は
6162e38182e38184
abあい
counter:161