I want to make an online php hexeditor, where the user uploads a file, the server performs a specified hexedit on it, and then the new file is saved on the server. I was thinking that I should write a .bat file that opens a hex editor on windows, performs the specified actions, then returns the new file. I could use the php function system(), or something like that. Anybody know of a good way to do all this?
feedback
|
|
You can certainly achieve this using PHP only. What you need to do is:
Check out the fread function, there is an example showing how to read a file as binary. Then use the bin2hex function which will give you a hexadecimal representation of binary data. Here's a quick example:
You will get for example:
| |||||||
feedback
|