= 5.3.0, PHP 7, PHP 8)streamWrapper::stream_set_option — Change stream options說明public streamWrapper::stream_s">
    • <nobr id="wls91"><strike id="wls91"></strike></nobr>

      streamWrapper::stream_set_option

      (PHP 5 >= 5.3.0, PHP 7, PHP 8)

      streamWrapper::stream_set_optionChange stream options

      說明

      public streamWrapper::stream_set_option(int $option, int $arg1, int $arg2): bool

      This method is called to set options on the stream.

      參數(shù)

      option

      One of:

      arg1

      If option is

      • STREAM_OPTION_BLOCKING: requested blocking mode (1 meaning block 0 not blocking).
      • STREAM_OPTION_READ_TIMEOUT: the timeout in seconds.
      • STREAM_OPTION_WRITE_BUFFER: buffer mode (STREAM_BUFFER_NONE or STREAM_BUFFER_FULL).

      arg2

      If option is

      • STREAM_OPTION_BLOCKING: This option is not set.
      • STREAM_OPTION_READ_TIMEOUT: the timeout in microseconds.
      • STREAM_OPTION_WRITE_BUFFER: the requested buffer size.

      返回值

      成功時(shí)返回 true, 或者在失敗時(shí)返回 false。 If option is not implemented, false should be returned.

      參見