How can I get a hex dump of a string in PHP? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T21:23:47Zhttp://stackoverflow.com/feeds/question/1057572http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1057572/how-can-i-get-a-hex-dump-of-a-string-in-php2How can I get a hex dump of a string in PHP?Rory2009-06-29T10:14:27Z2009-06-29T10:18:09Z
<p>I'm investigating encodings in PHP5. Is there some way to get a raw hex dump of a string? i.e. a hex representation of each of the bytes (not characters) in a string?</p>
http://stackoverflow.com/questions/1057572/how-can-i-get-a-hex-dump-of-a-string-in-php/1057579#10575793Answer by Stefan Gehrig for How can I get a hex dump of a string in PHP?Stefan Gehrig2009-06-29T10:17:01Z2009-06-29T10:17:01Z<pre><code>for ($i = 0; $i < strlen($string); $i++) {
echo dechex(ord($string[$i]));
}
</code></pre>
<p>or easier</p>
<pre><code>echo bin2hex($string);
</code></pre>