tell() 공개 메소드

This method is called in response to ftell().
public tell ( ) : integer
리턴 integer Should return the current position of the stream.
 /**
  * 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();
 }