function string2hex($string)
{
$hex = NULL;
for ($i=0; $i < strlen($string); $i++)
{
$ord = ord(substr($string,$i,1));
if($ord < 16) {
$hex.= '0'.dechex($ord);
} else {
$hex.= dechex($ord);
}
if ($i && ($i % 32) == 31) {
$hex.= "\n";
}
}
return $hex;
}
1 Temmuz 2007 Pazar
convert string to hex
Subscribe to:
Kayıt Yorumları (Atom)
0 Comments:
Post a Comment