public function PhpStreamWrapperInterface::stream_tell in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php \Drupal\Core\StreamWrapper\PhpStreamWrapperInterface::stream_tell()
- 9 core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php \Drupal\Core\StreamWrapper\PhpStreamWrapperInterface::stream_tell()
Retrieve the current position of a stream.
This method is called in response to fseek() to determine the current position.
Return value
int Should return the current position of the stream.
See also
PhpStreamWrapperInterface::stream_tell()
http://php.net/manual/en/streamwrapper.stream-tell.php
1 method overrides PhpStreamWrapperInterface::stream_tell()
- DummyExternalReadOnlyWrapper::stream_tell in core/
modules/ file/ tests/ file_test/ src/ StreamWrapper/ DummyExternalReadOnlyWrapper.php - @inheritDoc
File
- core/
lib/ Drupal/ Core/ StreamWrapper/ PhpStreamWrapperInterface.php, line 435
Class
- PhpStreamWrapperInterface
- Defines a generic PHP stream wrapper interface.
Namespace
Drupal\Core\StreamWrapperCode
public function stream_tell();