GoLang streamWrapper::stream_flush

request it (273)
GoLang replacement for PHP's streamWrapper::stream_flush [edit | history]



Do you know a GoLang replacement for PHP's streamWrapper::stream_flush? Write it!

PHP streamWrapper::stream_flush

PHP original manual for streamWrapper::stream_flush [ show | php.net ]

streamWrapper::stream_flush

(PHP 4 >= 4.3.2, PHP 5, PHP 7)

streamWrapper::stream_flushFlushes the output

Description

public bool streamWrapper::stream_flush ( void )

This method is called in response to fflush() and when the stream is being closed while any unflushed data has been written to it before.

If you have cached data in your stream but not yet stored it into the underlying storage, you should do so now.

Parameters

This function has no parameters.

Return Values

Should return TRUE if the cached data was successfully stored (or if there was no data to store), or FALSE if the data could not be stored.

Notes

Note:

If not implemented, FALSE is assumed as the return value.

See Also

  • fflush() - Flushes the output to a file