A partir de tradutores profissionais, empresas, páginas da web e repositórios de traduções disponíveis gratuitamente
the following example demonstrates how to use stream_set_write_buffer() to create an unbuffered stream.
the following example demonstrates how to use stream_set_write_buffer() to create an unbuffered stream.
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
output using fwrite() is normally buffered at 8k. this means that if there are two processes wanting to write to the same output stream (a file), each is paused after 8k of data to allow the other to write. stream_set_write_buffer() sets the buffering for write operations on the given filepointer stream to buffer bytes. if buffer is 0 then write operations are unbuffered. this ensures that all writes with fwrite() are completed before other processes are allowed to write to that output stream.
this means that if there are two processes wanting to write to the same output stream (a file), each is paused after 8k of data to allow the other to write. stream_set_write_buffer() sets the buffering for write operations on the given filepointer stream to buffer this means that if there are two processes wanting to write to the same output stream (a file), each is paused after 8k of data to allow the other to write. stream_set_write_buffer() sets the buffering for write operations on the given filepointer stream to buffer bytes.
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade: