On Windows this function does not work with pipes opened with proc_open (https://bugs.php.net/bug.php?id=47918, https://bugs.php.net/bug.php?id=34972, https://bugs.php.net/bug.php?id=51800)
(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
stream_set_blocking — Establecer el modo bloqueo/no-bloqueo en un flujo
Establece el modo de bloqueo o no-bloqueo en un stream
.
Esta función funciona con cualquier flujo que soporte el modo de no bloqueo (actualmente, archivos normales y flujos de socket).
stream
El flujo.
mode
Si mode
es false
, el flujo dado
será cambiado al modo de no-bloqueo, y si es true
,
será cambiado al modo de bloqueo. Esto afecta a las llamadas a, por ejemplo,
fgets() y fread()
que leen desde un flujo. En el modo de no-bloquo una
llamada a fgets() devolverá siempre inmediatamente
mientras que en el modo de bloqueo esperará a que la información esté disponible
en el flujo.
Nota:
Esta función se llamaba anteriormente set_socket_blocking() y después socket_set_blocking() pero este uso está obsoleto.
On Windows this function does not work with pipes opened with proc_open (https://bugs.php.net/bug.php?id=47918, https://bugs.php.net/bug.php?id=34972, https://bugs.php.net/bug.php?id=51800)
When you use fwrite() on a non-blocking stream, data isn't discarded silently as t dot starling said.
Remember that fwrite() returns an int, and this int represents the amount of data really written to the stream. So, if you see that fwrite() returns less than the amount of written data, it means you'll have to call fwrite() again in the future to write the remaining amount of data.
You can use stream_select() to wait for the stream to be available for writing, then continue writing data to the stream.
Non-blocking streams are useful as you can have more than one non-blocking stream, and wait for them to be available for writing.