Ejemplo n.º 1
0
 function setFormula2($formula)
 {
     // Parse the formula using the parser in Parser.php
     $error = $this->_parser->parse($formula);
     if (PEAR::isError($error)) {
         return $this->_formula2;
     }
     $this->_formula2 = $this->_parser->toReversePolish();
     if (PEAR::isError($this->_formula2)) {
         return $this->_formula2;
     }
     return true;
 }