You are here

public function PhpStreamWrapperInterface::stream_tell in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php \Drupal\Core\StreamWrapper\PhpStreamWrapperInterface::stream_tell()
  2. 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\StreamWrapper

Code

public function stream_tell();