You are here

public function PHPExcel_Shared_ZipStreamWrapper::stream_tell in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/ZipStreamWrapper.php \PHPExcel_Shared_ZipStreamWrapper::stream_tell()

* Returns the position of the file pointer, i.e. its offset into the file * stream. Implements support for ftell(). * *

Return value

int

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/ZipStreamWrapper.php, line 148

Class

PHPExcel_Shared_ZipStreamWrapper
PHPExcel_Shared_ZipStreamWrapper

Code

public function stream_tell() {
  return $this->_position;
}