Is it possible to fopen() a file, and get the values that a simple hex editors would show you? Using PHP of course. Typically you'd get something like this
3C 68 74 6D 6C 20 78 6D 6C 6E
I have some data file from a computer game, but when opened with Notepad2 or fopen() on PHP, all you get are some random gibberish.
(I need this in order to create a parser in PHP, where it loads up these files and creates a database using regular expressions and different algorithms)