gpt4 book ai didi

php - 使用php bin2hex函数读取bin文件

转载 作者:行者123 更新时间:2023-12-02 19:32:30 26 4
gpt4 key购买 nike

我正在尝试读取一个 bin 文件,其中包含很多两个 4 字节数字,我想读取这些数字并将其转换为十六进制数字,然后将其打印到屏幕上......但希望如此我在理解这个问题时遇到了一点困难。这是我到目前为止阅读示例和文档所得到的内容..

<?php

$handle = @fopen("files/bigbin1.bin", "r");
if ($handle) {
while (!feof($handle)) {
$hex = bin2hex($handle);
}
fclose($handle);

}

print_r($hex);
?>

我 95% 确定错误是在将 $handle 传递给 tbin2hex 时发生的。但这是我第一次阅读 bin 文件,我有点迷失了。在某些时候,总体目标是将 bin 文件读入数据库,但我只是想弄清楚该文件在屏幕上的样子。

最佳答案

<?php

$handle = @fopen("files/bigbin1.bin", "r");
if ($handle) {
while (!feof($handle)) {
$hex = bin2hex(fread ($handle , 4 ));
print $hex."\n";
}
fclose($handle);

}

?>

编辑:您还应该避免使用 @ 它会使调试变得非常令人沮丧。

关于php - 使用php bin2hex函数读取bin文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6500774/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com