1 stream_wrappers.inc | public BackdropLocalStreamWrapper::stream_tell() |
Support for ftell().
Return value
The current offset in bytes from the beginning of file.:
Overrides StreamWrapperInterface::stream_tell
See also
http://php.net/manual/streamwrapper.stream-tell.php
File
- core/
includes/ stream_wrappers.inc, line 526 - Backdrop stream wrapper interface.
Class
- BackdropLocalStreamWrapper
- Backdrop stream wrapper base class for local files.
Code
public function stream_tell() {
return ftell($this->handle);
}