You are here

public static function PHPExcel_Reader_Excel5::_GetInt2d in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php \PHPExcel_Reader_Excel5::_GetInt2d()

* Read 16-bit unsigned integer * *

Parameters

string $data: * @param int $pos * @return int

98 calls to PHPExcel_Reader_Excel5::_GetInt2d()
PHPExcel_Reader_Excel5::listWorksheetInfo in vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php
* Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns) * *
PHPExcel_Reader_Excel5::listWorksheetNames in vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php
* Reads names of the worksheets from a file, without parsing the whole file to a PHPExcel object * *
PHPExcel_Reader_Excel5::load in vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php
* Loads PHPExcel from file * *
PHPExcel_Reader_Excel5::_getFormulaFromStructure in vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php
* Convert formula structure into human readable Excel formula like 'A3+A5*5' * *
PHPExcel_Reader_Excel5::_getNextToken in vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php
* Fetch next token from binary formula data * *

... See full list

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php, line 6774

Class

PHPExcel_Reader_Excel5
PHPExcel_Reader_Excel5

Code

public static function _GetInt2d($data, $pos) {
  return ord($data[$pos]) | ord($data[$pos + 1]) << 8;
}