You are here

public function PHPExcel_Writer_Excel5_Parser::__construct in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Parser.php \PHPExcel_Writer_Excel5_Parser::__construct()

* The class constructor *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Parser.php, line 122

Class

PHPExcel_Writer_Excel5_Parser
PHPExcel_Writer_Excel5_Parser

Code

public function __construct() {
  $this->_current_char = 0;
  $this->_current_token = '';

  // The token we are working on.
  $this->_formula = '';

  // The formula to parse.
  $this->_lookahead = '';

  // The character ahead of the current char.
  $this->_parse_tree = '';

  // The parse tree to be generated.
  $this
    ->_initializeHashes();

  // Initialize the hashes: ptg's and function's ptg's
  $this->_ext_sheets = array();
  $this->_references = array();
}