downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

mhash_get_block_size> <Funciones de Mhash
Last updated: Fri, 20 May 2011

view this page in

mhash_count

(PHP 4, PHP 5)

mhash_countToma el mayor ID de hash disponible

Descripción

int mhash_count ( void )

Toma el mayor ID de hash disponible.

Valores devueltos

Devuelve el mayor ID de hash disponible. Los hash son enumerados de 0 a este ID de hash.

Ejemplos

Example #1 Atravesando todos los hash

<?php

$nr 
mhash_count();

for (
$i 0$i <= $nr$i++) {
    echo 
sprintf("El tamaƱo de bloque de %s es %d\n",
        
mhash_get_hash_name($i),
        
mhash_get_block_size($i));
}
?>



add a note add a note User Contributed Notes mhash_count
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites