public function LocalReadOnlyStream::stream_flush in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/StreamWrapper/LocalReadOnlyStream.php \Drupal\Core\StreamWrapper\LocalReadOnlyStream::stream_flush()
Support for fflush().
Nothing will be output to the file, as this is a read-only stream wrapper. However as stream_flush is called during stream_close we should not trigger an error.
Return value
bool FALSE, as no data will be stored.
Overrides LocalStream::stream_flush
See also
http://php.net/manual/streamwrapper.stream-flush.php
File
- core/
lib/ Drupal/ Core/ StreamWrapper/ LocalReadOnlyStream.php, line 126 - Contains \Drupal\Core\StreamWrapper\LocalReadOnlyStream.
Class
- LocalReadOnlyStream
- Defines a read-only Drupal stream wrapper base class for local files.
Namespace
Drupal\Core\StreamWrapperCode
public function stream_flush() {
return FALSE;
}