Ejemplo n.º 1
0
        for ($i = 0; $i < $this->intentos; $i++) {
            $int = rand($minimo, $maximo);
            self::intentos($int);
        }
    }
    public function intentos($int)
    {
        if ($int == $this->numero) {
            echo "<b>" . $int . "==" . $this->numero . "</b><br>";
            $this->resultado = true;
        } else {
            echo $int . "!=" . $this->numero . "<br>";
        }
    }
    public function __destruct()
    {
        if ($this->resultado) {
            echo "Felicidades , has ganado en" . $this->intentos . "intentos";
        } else {
            echo "Que lastima, has perdido en" . $this->intentos . "intentos";
        }
    }
    public function imprimir()
    {
        echo "hola que tal" . "<br>";
    }
}
$Loteria = new Loteria(10, 10);
$Loteria->sortear();
$Loteria->imprimir();