Neos\Flow\ResourceManagement\Streams\StreamWrapperInterface::tell PHP Method

tell() public method

This method is called in response to ftell().
public tell ( ) : integer
return integer Should return the current position of the stream.
    public function tell();

Usage Example

 /**
  * Retrieve the current position of a stream.
  *
  * This method is called in response to ftell().
  *
  * @return int Should return the current position of the stream.
  */
 public function stream_tell()
 {
     return $this->streamWrapper->tell();
 }