You are here

private static function PHPExcel_Shared_OLE::_readInt4 in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE.php \PHPExcel_Shared_OLE::_readInt4()

* Reads an unsigned long (4 octets). *

Parameters

resource file handle: * @return int * @access public

2 calls to PHPExcel_Shared_OLE::_readInt4()
PHPExcel_Shared_OLE::read in vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE.php
* Reads an OLE container from the contents of the file given. * * @acces public *
PHPExcel_Shared_OLE::_readPpsWks in vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE.php
* Gets information about all PPS's on the OLE container from the PPS WK's * creates an OLE_PPS object for each one. * * @access public *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE.php, line 252

Class

PHPExcel_Shared_OLE
OLE package base class.

Code

private static function _readInt4($fh) {
  list(, $tmp) = unpack("V", fread($fh, 4));
  return $tmp;
}