示例#1
0
 /**
  * {@inheritdoc}
  */
 public function tell()
 {
     if (!$this->initialized) {
         return 0;
     }
     return $this->stream !== null ? $this->stream->tell() : false;
 }
示例#2
0
文件: Limit.php 项目: Briareos/Oxygen
 /**
  * {@inheritdoc}
  */
 public function tell()
 {
     return $this->stream->tell() - $this->offset;
 }