public function PhpStreamWrapperInterface::stream_write in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php \Drupal\Core\StreamWrapper\PhpStreamWrapperInterface::stream_write()
- 9 core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php \Drupal\Core\StreamWrapper\PhpStreamWrapperInterface::stream_write()
Write to stream.
This method is called in response to fwrite(). Remember to update the current position of the stream by number of bytes that were successfully written.
Parameters
string $data: Should be stored into the underlying stream. If there is not enough room in the underlying stream, store as much as possible.
Return value
int Should return the number of bytes that were successfully stored, or 0 if none could be stored.
See also
fwrite()
http://php.net/manual/en/streamwrapper.stream-write.php
File
- core/
lib/ Drupal/ Core/ StreamWrapper/ PhpStreamWrapperInterface.php, line 471
Class
- PhpStreamWrapperInterface
- Defines a generic PHP stream wrapper interface.
Namespace
Drupal\Core\StreamWrapperCode
public function stream_write($data);