function LocalStream::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.
Overrides PhpStreamWrapperInterface::stream_tell
File
-
core/
lib/ Drupal/ Core/ StreamWrapper/ LocalStream.php, line 216
Class
- LocalStream
- Defines a Drupal stream wrapper base class for local files.
Namespace
Drupal\Core\StreamWrapperCode
public function stream_tell() {
return ftell($this->handle);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.