public function DrupalLocalStreamWrapper::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
Archivo
- drupal-7.x/
includes/ stream_wrappers.inc, line 523 - Drupal stream wrapper interface.
Class
- DrupalLocalStreamWrapper
- Drupal stream wrapper base class for local files.
Código
public function stream_tell() {
return ftell($this->handle);
}