NOTE:If you want more specific result about any topic, entity or word, paste this part into left panel search and get more information.
crc32(): Calculates the crc32 polynomial of a string
sha1():Calculate the sha1 hash of a string
$val = crc32("Pankaj Raghuwanshi");
echo $val;
echo " ";
$val = md5("Pankaj Raghuwanshi");
echo $val;
echo " ";
$val = sha1("Pankaj Raghuwanshi");
echo $val;
?>
O/P:
-2098577348
a1404e25c65cb59ecbf6a41fc1c18757
8781c12f429d3c441c79d335555e3793fc4cf927
Refer to Friend
|