PHP 7.0.6 Released

Mhash

User Contributed Notes

Typo
4 years ago
Note:

This extension is obsoleted by Hash.

I thought I would post this here as it took me a few minutes to find out.
virgili dot garcia at gmail dot com
19 days ago
You can use:

$s = 'foo';
echo pack('H*', hash('md4', $s));
To Top