Home
last modified time | relevance | path

Searched refs:noeuds (Results 1 – 1 of 1) sorted by relevance

/plugin/math2/phpmathpublisher/
Dmathpublisher.php749 var $noeuds; variable in expression_math
753 $this->noeuds = $exp;
754 $this->noeuds = $this->parse();
759 if(count($this->noeuds) <= 3) return $this->noeuds;
762 for($i = 0; $i < count($this->noeuds); $i++)
764 …if($this->noeuds[$i]->texte == '(' || $this->noeuds[$i]->texte == '{') array_push($parentheses, $i…
765 elseif($this->noeuds[$i]->texte == ')' || $this->noeuds[$i]->texte == '}')
770 $sub = array_slice($this->noeuds, $pos + 1, $i - $pos - 1);
771 if($this->noeuds[$i]->texte == ')')
778 elseif(count($parentheses) == 0) $ret[] = $this->noeuds[$i];
[all …]