Subversion Repositories eFlore/Applications.cel

Rev

Rev 1604 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1604 Rev 3473
Line 167... Line 167...
167
    * The class constructor
167
    * The class constructor
168
    *
168
    *
169
    * @param integer $byte_order The byte order (Little endian or Big endian) of the architecture
169
    * @param integer $byte_order The byte order (Little endian or Big endian) of the architecture
170
                                 (optional). 1 => big endian, 0 (default) little endian.
170
                                 (optional). 1 => big endian, 0 (default) little endian.
171
    */
171
    */
172
    function Spreadsheet_Excel_Writer_Parser($byte_order, $biff_version)
172
    function __construct($byte_order, $biff_version)
173
    {
173
    {
174
        $this->_current_char  = 0;
174
        $this->_current_char  = 0;
175
        $this->_BIFF_version  = $biff_version;
175
        $this->_BIFF_version  = $biff_version;
176
        $this->_current_token = '';       // The token we are working on.
176
        $this->_current_token = '';       // The token we are working on.
177
        $this->_formula       = '';       // The formula to parse.
177
        $this->_formula       = '';       // The formula to parse.