From professional translators, enterprises, web pages and freely available translation repositories.
in php 4.3, socket based streams are still the only kind supported in the php core, although streams from other extensions may support this function.
蛁: as of php 4.3, this function can (potentially) work on any kind of stream. in php 4.3, socket based streams are still the only kind supported in the php core, although streams from other extensions may support this function.
this function was introduced in php 4.3, but prior to this version, socket_get_status() could be used to retrieve the first four items, for socket based streams only.
蛁: this function was introduced in php 4.3, but prior to this version, socket_get_status() could be used to retrieve the first four items, for socket based streams only.
if the stream is (for example) a file based stream that is wrapping a non-seekable pipe, the streams api will not apply emulation because the file based stream implements a seek operation; the seek will fail and an error result will be returned to the caller.
the emulation is only applied when the underlying stream implementation does not support seeking. if the stream is (for example) a file based stream that is wrapping a non-seekable pipe, the streams api will not apply emulation because the file based stream implements a seek operation; the seek will fail and an error result will be returned to the caller.