Hosting de Calidad
  • Inicio
  • Precios y servicios
  • F.a.q y ayudas
  • Realizar pedido
  • Webs alojadas
  • Quienes somos
  • Foro HyD
  • Contacto

    Zona Dominios

    Entrar
    registro de dominios


    Zona Hosting

    Entrar
    alojamiento web


    5 Métodos de Pago
    Tarjeta de crédito
    Domiciliación
    Transferencia
    Soporte Epagado
    Soporte Paypal

    Liberalización .es

    Ver mas
    dominios .es


  •  
     
     
    break

    break

    break escapa de la estructuras de control iterante (bucle) actuales for, while, o switch_

    break accepta un parámetro opcional, el cual determina cuantas estructuras de control hay que escapar_

    <?php
    $arr = array ('one', 'two', 'three', 'four', 'stop', 'five');
    while (list (, $val) = each ($arr)) {
        if ($val == 'stop') {
            break;    /* You could also write 'break 1;' here_ */
        }
        echo "$val<br>\n";
    }
    
    /* Using the optional argument_ */
    
    $i = 0;
    while (++$i) {
        switch ($i) {
        case 5:
            echo "At 5<br>\n";
            break 1;  /* Exit only the switch_ */
        case 10:
            echo "Al 10; saliendo<br>\n";
            break 2;  /* Exit the switch and the while_ */
        default:
            break;
        }
    }
    ?>

     
       



    registro de dominios | alojamiento web | hosting por publicidad

       

     

    Manual de linux Manual de apache Manual de php Manual de mysql Manual de SQL Manual del Plesk Como funciona Paypal Manual de html