int mhash_count
mhash_count は、利用可能なハッシュIDの最大値を 返します。 ハッシュは、0 からこのハッシュIDまでのすうじとなります。
例 1. 全ハッシュをループする
<?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)); } ?>