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 — Definir modo de bloqueio/não-bloqueio em um fluxo
Definir modo de bloqueio ou não-bloqueio em um fluxo informado em stream
.
Esta função funciona para qualquer fluxo que suporte modo de não-bloqueio (atualmente, arquivos comuns e fluxos de socket).
stream
O fluxo.
enable
Se enable
for false
, o fluxo informado
será trocado para o modo de não-bloqueio, e se for true
, será
trocado para o modo de bloqueio. Isto afeta chamadas como
fgets() e fread()
que lêem do fluxo. Em modo de não-bloqueio, uma chamada a
fgets() irá sempre retornar imediatamente,
enquanto que em modo de bloqueio, ela irá esperar que dados fiquem disponíveis
no fluxo.
Nota:
No Windows, isto não tem efeito em arquivos locais. E/S de não-bloqueio em arquivos locais não é suportado no Windows.
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.