Saturday, 17 December 2011

About bin2hex() function

About bin2hex() function

This function can convert a String of ASCII caracters in  hexadecimal value.It can again converted back by using pack() function.

Following is an example of bin2hex() function



<?php
$str = "Hello world!";
echo bin2hex($str) . "<br />";
echo pack("H*",bin2hex($str)) . "<br />";
?>

This will give output:

48656c6c6f20776f726c6421
Hello world! 

No comments:

Post a Comment