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 — Установить блокирующий/неблокирующий режим в потоке
$stream
, bool $enable
): bool
Устанавливает блокирующий или неблокирующий режим в потоке stream
.
Эта функция работает для любого потока, который поддерживает неблокирующий режим (в настоящее время это обычные файлы и сокетные потоки).
stream
Поток.
enable
Если параметр enable
равен false
, указанный поток
будет переключён в неблокирующий режим, а если он равен true
, поток
будет переключён в блокирующий режим. Это влияет на такие вызовы, как
fgets() и fread(),
которые читают из потока. В неблокирующем режиме вызов функции
fgets() будет всегда возвращаться сразу,
тогда как в блокирующем режиме он будет ожидать, пока данные станут доступны
на потоке.
Возвращает true
в случае успешного выполнения или false
в случае возникновения ошибки.
Замечание:
В Windows эта функция не влияет на локальные файлы. Неблокирующий IO для локальных файлов не поддерживается в 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.
It is necessary to be noted that stream_set_blocking() and stream_set_timeout() does not work width standard I/O streams, such as STDIN and STDOUT.