(PHP 4, PHP 5)
mhash_get_hash_name — Conseguir el nombre de un hash especifico
mhash_get_hash_name() es usado para conseguir el nombre de el hash determinado.
mhash_get_hash_name() toma el id del hash como un argumento y devuelve el nombre de el hash o FALSE, si el hash no existe.
Example#1 mhash_get_hash_name example
<?php
$hash = MHASH_MD5;
print mhash_get_hash_name($hash);
?>
      
MD5