public function ReadOnlyStream::stream_write

public ReadOnlyStream::stream_write($data)

Support for fwrite(), file_put_contents() etc.

Data will not be written as this is a read-only stream wrapper.

Parameters

string $data: The string to be written.

Return value

bool FALSE as data will not be written.

Overrides PhpStreamWrapperInterface::stream_write

See also

http://php.net/manual/streamwrapper.stream-write.php

File

core/lib/Drupal/Core/StreamWrapper/ReadOnlyStream.php, line 138

Class

ReadOnlyStream
Defines a read-only Drupal stream wrapper base class.

Namespace

Drupal\Core\StreamWrapper

Code

public function stream_write($data) {
  trigger_error('stream_write() not supported for read-only stream wrappers', E_USER_WARNING);
  return FALSE;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!StreamWrapper!ReadOnlyStream.php/function/ReadOnlyStream::stream_write/8.1.x