TOP ▲
itcore TOP プログラムパーツ
uStrHexDump 文字列を16進ダンプする。 | itcore 2017年
PHP関数
<?php
// 文字列を16進ダンプする。
function uStrHexDump($str) {
$s = "";
for ($i = 0 ; $i < strlen($str) ; $i++) {
$s .= sprintf("%02x", ord($str[$i]));
}
return $s;
}
?>
単体テスト 実行
<?php include "uStrHexDump.func"; ?>
<?php
$str = "012abcABC\t\r\n";
$ret = uStrHexDump($str);
echo "str=$str ret=$ret<br>\n";
?>
<?php include "uJsClose.func"; print(uJsClose()); // 閉じるボタン ?>