我在字符串中保存了十六进制内容,但是我想获得一个位于特定地址的值(例如 0xD3)
我有以下代码来读取 .bin 文件并显示它的内容:
$handle = @fopen($file, "r");
if ($handle) {
while (!feof($handle)) {
$hex = bin2hex(fread ($handle , 16 ));
print $hex."\n";
$input_output .= $hex;
}
fclose($handle);
}
我正在寻找一种映射地址的方法,以便找到我想要的值。想法?提前致谢