Click to See Complete Forum and Search --> : Open file and get it's HEX code


Extreme
07-05-2004, 09:30 AM
Hello. Can anyone help me with some code that will read inputted file(for ex. some.jpg), and the echo(or output to another file) it's HEX code..
Thanks..

MstrBob
07-05-2004, 09:45 AM
<?php
$p = file_get_contents("some.jpg");
$p = bin2hex($p);
echo($p);
?>