Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 PHP 工具,用于自动生成一些十六进制的过程,然后我使用十六进制编辑器手动将其放入文件中。
我有 1 个字节到偏移量 0x345,还有一个更大的可变长度部分到 0x560。我使用 Paste > Write 以便我生成的十六进制替换它的方式,而不是增加文件的大小。
有没有办法可以自动化这个,fopen();这样我就可以跳过手动粘贴?
fopen();
您可以使用这些功能:fopen打开文件,fseek到所需的位置和fwrite您的数据。
fopen
fseek
fwrite