17/06/2004, 01:58
|
| | | Fecha de Ingreso: mayo-2004
Mensajes: 1.266
Antigüedad: 20 años, 6 meses Puntos: 2 | |
Esto también te podría servir
function cuantos($var)
{
global $num;
return($var == $num);
}
$arrayNumeros = array(1, 1, 3, 5, 7, 9, 12);
$num=1;
$num_1=count(array_filter($arrayNumeros, "cuantos")); |