tell() public method

This method is called in response to ftell().
public tell ( ) : integer
return integer Should return the current position of the stream.
コード例 #1
0
 /**
  * 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();
 }