Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
естьДоброго времени суток по Гринвичу
Народ есть ли аналог функции md5_hex (функция в PERL) в PHP?
Есть и hex, а есть и md5:
PHP:$str_md5=md5('Hello World!');//ed076287532e86365e841e92bfc50d8c $str_hex=bin2hex('Hello World!');//48656c6c6f20576f726c6421
# md5($data,...)
This function will concatenate all arguments, calculate the MD5 digest of this "message", and return it in binary form. The returned string will be 16 bytes long.
The result of md5("a", "b", "c") will be exactly the same as the result of md5("abc").
# md5_hex($data,...)
Same as md5(), but will return the digest in hexadecimal form. The length of the returned string will be 32 and it will only contain characters from this set: '0'..'9' and 'a'..'f'.