Hostign Towebs
 
    BUSCARDOR 
 
socket_set_block

socket_set_block

(PHP 4 >= 4.2.0, PHP 5)

socket_set_block --  Sets blocking mode on a socket resource

Description

bool socket_set_block ( resource socket )

The socket_set_block() function removes the O_NONBLOCK flag on the socket specified by the socket parameter.

Ejemplo 1. socket_set_block() example

<?php

$port
= 9090;
if (!
$socket = socket_create_listen($port)) {
    echo
socket_strerror(socket_last_error());
}

if (!
socket_set_option($socket, SOL_SOCKET, SO_REUSEADDR, 1)) {
    echo
socket_strerror(socket_last_error());
}

if (!
socket_set_nonblock($socket)) { // $socket is now nonblocking
    
echo socket_strerror(socket_last_error());
}

if (!
socket_set_block($socket)) {     // $socket is now blocking
    
echo socket_strerror(socket_last_error());
}

?>

Devuelve TRUE si todo se llevó a cabo correctamente, FALSE en caso de fallo.

See also socket_set_nonblock() and socket_set_option()



 
 
Rute path: HOME / MANUALES Y TUTORIALES / MANUAL DE PHP
Home | Hosting | Housing | Revendedores | Soporte | Empresa | Mapa del Sitio | Contacto | FAQ | Blog Corporativo
Atención técnica y comercial: (54)-11-5031-1111 las 24 hs. los 365 días del año. ToWebs, (c) 2008
Virtucom Networks S.A Av. Belgrano 1586, piso 10 (C1093AAQ) Cap. Fed. Bs. As, Argentina.