Convert 160-bit to integer

sha

I am using SHA1 so i want to convert the output of this SHA1 to integer

Best Answer

How about

echo preg_replace("/[^0-9]/i", "", sha1("apikot"));
Related Topic