Ver original//ejemplofunction countParametros(){ $args = func_get_args(); $count =0; foreach($args as $argumentos){ $count++; } return $count;}