public function AmazonS3StreamWrapper::stream_tell in AmazonS3 7
Support for ftell().
Return value
int The current offset in bytes from the beginning of file.
Overrides StreamWrapperInterface::stream_tell
See also
http://php.net/manual/en/streamwrapper.stream-tell.php
File
- ./
AmazonS3StreamWrapper.inc, line 658 - Drupal stream wrapper implementation for Amazon S3
Class
- AmazonS3StreamWrapper
- @file Drupal stream wrapper implementation for Amazon S3
Code
public function stream_tell() {
return $this->position;
}