|
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.73
"> (PHP 3>= 3.0.9, PHP 4 ) mhash_count -- retourne l'identifiant maximal de hash. Descriptionint mhash_count ( void)
mhash_count() retourne l'identifiant de hash maximal.
Les hash sont numérotés de 0 jusqu'à cet identifiant.
Exemple 1. Parcourir la liste des hash <?php
$nr = mhash_count();
for($i = 0; $i <= $nr; $i++) {
echo sprintf("The blocksize of %s is %d\n",
mhash_get_hash_name($i),
mhash_get_block_size($i));
}
?> |
|
|