event_buffer_write

(PECL libevent >= 0.0.1)

event_buffer_writeWrite data to a buffered event

설명

bool event_buffer_write ( resource $bevent , string $data [, int $data_size = -1 ] )

Writes data to the specified buffered event. The data is appended to the output buffer and written to the descriptor when it becomes available for writing.

인수

bevent

Valid buffered event resource.

data

The data to be written.

data_size

Optional size parameter. event_buffer_write() writes all the data by default.

반환값

event_buffer_write() returns TRUE on success or FALSE on error.

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top