Ver Mensaje Individual
  #4 (permalink)  
Antiguo 01/04/2010, 09:04
Avatar de eulloa
eulloa
 
Fecha de Ingreso: octubre-2007
Ubicación: Donde caiga la noche, si mi hijo me deja
Mensajes: 691
Antigüedad: 17 años, 2 meses
Puntos: 5
Respuesta: Como afecta el la función exit dentro de uan clase??

¿Y si tu método retorna FALSE en caso de sobrepasar $intentos?

Código PHP:
Ver original
  1. static function Snmp($Mib)
  2.     {
  3.         $ContadorIntentos = 0;
  4.        
  5.         do
  6.         {
  7.             $Resultado = snmpwalk($this->Host, $this->Comunity , $Mib);
  8.            
  9.             $ContadorIntentos ++;
  10.         }
  11.         while($Resultado == false || $ContadorIntentos <5);
  12.        
  13.                 if($ContadorIntentos == 5)
  14.                 {
  15.                         return false; //AQUI FALSE
  16.                  } else {
  17.                       return $Resultado;
  18.                  }
  19.     }