1.20.x stream_wrappers.inc | public BackdropLocalStreamWrapper::stream_flush() |
Support for fflush().
Return value
TRUE if data was successfully stored (or there was no data to store).:
Overrides StreamWrapperInterface::stream_flush
See also
http://php.net/manual/streamwrapper.stream-flush.php
File
- includes/
stream_wrappers.inc, line 514 - Backdrop stream wrapper interface.
Class
- BackdropLocalStreamWrapper
- Backdrop stream wrapper base class for local files.
Code
public function stream_flush() {
return fflush($this->handle);
}