You are here

private static function PHPExcel_Shared_OLE::_readInt1 in Loft Data Grids 6.2

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

* Reads a signed char. *

Parameters

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

1 call to PHPExcel_Shared_OLE::_readInt1()
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 228

Class

PHPExcel_Shared_OLE
OLE package base class.

Code

private static function _readInt1($fh) {
  list(, $tmp) = unpack("c", fread($fh, 1));
  return $tmp;
}