4 * ASCIIMathPHP and associated classes:
6 * -- MathMLNode extends XMLNode
8 * These classes are a PHP port of ASCIIMath
9 * Version 1.3 Feb 19 2004, (c) Peter Jipsen http://www.chapman.edu/~jipsen
11 * ASCIIMathPHP Version 1.11, 26 April 2006, (c) Kee-Lin Steven Chan (kc56@cornell.edu)
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or (at
16 * your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * General Public License (at http://www.gnu.org/copyleft/gpl.html)
27 * -- PHP5 only version of ASCIIMathPHP
30 * -- Included the missing setCurrExpr() method
33 * -- Added changes that David Lippman <DLippman@pierce.ctc.edu> made to bring ASCIIMathPHP up to
34 * ASCIIMath 1.4.7 functionality.
35 * -- Added parseIntExpr, for intermediate expression parsing rule, allowing x^2/x^3 to render as (x^2)/(x^3)
36 * -- Added quotes as another way of designating text; "hello" is equivalent to text(hello)
37 * -- Added FUNC designator to allow sin, cos, etc to act as functions, so sin(x)/x renders as {sin(x)}/x
40 * -- Fixed bug that stopped script execution for incomplete expressions
41 * -- Changed the algorithm for parsing expressions so that it matches the longest string possible (greedy)
44 * -- Added definition support
45 * -- Added stackrel support
46 * -- Added a bunch of different symbols etc. >>, << and definitions like dx, dy, dz etc.
49 * -- Fixed bug with mbox and text
50 * -- Fixed spacing bug with mbox and text
53 * -- Fixed Bug that did not parse symbols greater than a single character
54 * correctly when appearing at end of expression.
72 function XMLNode($id = NULL)
74 $this->_id
= isset($id) ?
$id : md5(uniqid(rand(),1));
77 $this->_mt_elem_flg
= FALSE;
78 $this->_attr_arr
= array();
79 $this->_child_arr
= array();
81 $this->_nmspc_alias
= '';
82 $this->_parent_id
= FALSE;
83 $this->_parent_node
= NULL;
86 function addChild(&$node)
88 $this->_child_arr
[$node->getId()] = $node;
89 $node->setParentId($this->_id
);
90 $node->setParentNode($this);
93 function addChildArr(&$node_arr)
95 $key_arr = array_keys($node_arr);
96 $num_key = count($key_arr);
98 for ($i = 0; $i < $num_key; $i++
) {
99 $node = $node_arr[$key_arr[$i]];
100 $this->addChild($node);
104 function insertChildBefore($idx,&$node)
106 $key_arr = array_keys($this->_child_arr
);
107 $num_key = count($key_arr);
110 for ($i = 0;$i < $num_key;$i++
) {
112 $tmp_arr[$node->getId()] = $node;
114 $tmp_arr[$key_arr[$i]] = $this->_child_arr
[$key_arr[$i]];
116 $this->_child_arr
= $tmp_arr;
119 function insertChildAfter($idx,&$node)
121 $key_arr = array_keys($this->_child_arr
);
122 $num_key = count($key_arr);
125 for ($i = 0;$i < $num_key;$i++
) {
126 $tmp_arr[$key_arr[$i]] = $this->_child_arr
[$key_arr[$i]];
128 $tmp_arr[$node->getId()] = $node;
131 $this->_child_arr
= $tmp_arr;
139 function setName($name)
141 $this->_name
= $name;
144 function setNamepace($nmspc)
146 $this->_nmspc
= $nmspc;
149 function setNamespaceAlias($nmspc_alias)
151 $this->_nmspc_alias
= $nmspc_alias;
154 function setContent($content)
156 $this->_content
= $content;
159 function setEmptyElem($mt_elem_flg)
161 $this->_mt_elem_flg
= $mt_elem_flg;
164 function setAttr($attr_nm,$attr_val)
166 $this->_attr_arr
[$attr_nm] = $attr_val;
169 function setAttrArr($attr_arr)
171 $this->_attr_arr
= $attr_arr;
174 function setParentId($id)
176 $this->_parent_id
= $id;
179 function setParentNode(&$node)
181 $this->_parent_node
= $node;
191 return($this->_name
);
194 function getNamespace()
196 return($this->_nmspc
);
199 function getNamespaceAlias()
201 return($this->_nmspc_alias
);
204 function getContent()
206 return($this->_content
);
209 function getAttr($attr_nm)
211 if (isset($this->_attr_arr
[$attr_nm])) {
212 return($this->_attr_arr
[$attr_nm]);
218 function getAttrArr()
220 return($this->_attr_arr
);
223 function getParentId()
225 return($this->parent_id
);
228 function getParentNode()
230 return($this->_parent_node
);
233 function getChild($id)
235 if (isset($this->_child_arr
[$id])) {
236 return($this->_child_arr
[$id]);
242 function getFirstChild()
244 $id_arr = array_keys($this->_child_arr
);
245 $num_child = count($id_arr);
247 if ($num_child > 0) {
248 return($this->_child_arr
[$id_arr[0]]);
254 function getLastChild()
256 $id_arr = array_keys($this->_child_arr
);
257 $num_child = count($id_arr);
259 if ($num_child > 0) {
260 return($this->_child_arr
[$id_arr[$num_child - 1]]);
266 function getChildByIdx($idx)
268 $id_arr = array_keys($this->_child_arr
);
270 if (isset($this->_child_arr
[$id_arr[$idx]])) {
271 return($this->_child_arr
[$id_arr[$idx]]);
277 function getNumChild()
279 return(count($this->_child_arr
));
282 function removeChild($id)
284 unset($this->_child_arr
[$id]);
287 function removeChildByIdx($idx)
289 $key_arr = array_keys($this->_child_arr
);
290 unset($this->_child_arr
[$key_arr[$idx]]);
293 function removeFirstChild()
295 $key_arr = array_keys($this->_child_arr
);
296 unset($this->_child_arr
[$key_arr[0]]);
299 function removeLastChild()
301 $key_arr = array_keys($this->_child_arr
);
302 unset($this->_child_arr
[$key_arr[count($key_arr)-1]]);
305 function dumpXML($indent_str = "\t")
307 $attr_txt = $this->_dumpAttr();
308 $name = $this->_dumpName();
309 $xmlns = $this->_dumpXmlns();
310 $lvl = $this->_getCurrentLevel();
311 $indent = str_pad('',$lvl,$indent_str);
313 if ($this->_mt_elem_flg
) {
314 $tag = "$indent<$name$xmlns$attr_txt />";
317 $key_arr = array_keys($this->_child_arr
);
318 $num_child = count($key_arr);
320 $tag = "$indent<$name$xmlns$attr_txt>$this->_content";
322 for ($i = 0;$i < $num_child;$i++
) {
323 $node = $this->_child_arr
[$key_arr[$i]];
325 $child_txt = $node->dumpXML($indent_str);
326 $tag .= "\n$child_txt";
329 $tag .= ($num_child > 0 ?
"\n$indent</$name>" : "</$name>");
336 $id_arr = array_keys($this->_attr_arr
);
337 $id_arr_cnt = count($id_arr);
340 for($i = 0;$i < $id_arr_cnt;$i++
) {
342 $attr_txt .= " $key=\"{$this->_attr_arr[$key]}\"";
350 $alias = $this->getNamespaceAlias();
352 return($this->getName());
354 return("$alias:" . $this->getName());
358 function _dumpXmlns()
360 $nmspc = $this->getNamespace();
361 $alias = $this->getNamespaceAlias();
365 return(" xmlns=\"" . $nmspc . "\"");
367 return(" xmlns:$alias=\"" . $nmspc . "\"");
374 function _getCurrentLevel()
376 if ($this->_parent_id
=== FALSE) {
379 $node = $this->getParentNode();
380 $lvl = $node->_getCurrentLevel();
387 class MathMLNode
extends XMLNode
389 function MathMLNode($id = NULL)
391 parent
::XMLNode($id);
394 function removeBrackets()
396 if ($this->_name
== 'mrow') {
397 if ($c_node_0 = $this->getFirstChild()) {
398 $c_node_0->isLeftBracket() ?
$this->removeFirstChild() : 0;
401 if ($c_node_0 = $this->getLastChild()) {
402 $c_node_0->isRightBracket() ?
$this->removeLastChild() : 0;
407 function isLeftBracket()
409 switch ($this->_content
) {
419 function isRightBracket()
421 switch ($this->_content
) {
441 function ASCIIMathPHP($symbol_arr,$expr = NULL)
443 $this->_symbol_arr
= $symbol_arr;
445 $this->setExpr($expr);
450 * Returns an empty node (containing a non-breaking space) 26-Apr-2006
452 * Used when an expression is incomplete
460 $tmp_node = $this->createNode();
461 $tmp_node->setName('mn');
462 $tmp_node->setContent('&#' . hexdec('200B') . ';');
466 function pushExpr($prefix) // 2005-06-11 wes
468 $this->_curr_expr
= $prefix . $this->_curr_expr
;
471 function setExpr($expr)
473 $this->_expr
= $expr;
474 $this->_curr_expr
= $expr;
475 $this->_prev_expr
= $expr;
477 $this->_node_arr
= array();
478 $this->_node_cntr
= 0;
481 function genMathML($attr_arr = NULL)
484 $node_0 = $this->createNode();
485 $node_0->setName('math');
486 $node_0->setNamepace('http://www.w3.org/1998/Math/MathML');
489 if (isset($attr_arr)) {
490 $node_1 = $this->createNode();
491 $node_1->setName('mstyle');
492 $node_1->setAttrArr($attr_arr);
494 $node_arr = $this->parseExpr();
496 $node_1->addChildArr($node_arr);
497 $node_0->addChild($node_1);
499 $node_arr = $this->parseExpr();
500 $node_0->addChildArr($node_arr);
507 function mergeNodeArr(&$node_arr_0,&$node_arr_1)
509 $key_arr_0 = array_keys($node_arr_0);
510 $key_arr_1 = array_keys($node_arr_1);
512 $num_key_0 = count($key_arr_0);
513 $num_key_1 = count($key_arr_1);
515 $merge_arr = array();
517 for ($i = 0;$i < $num_key_0;$i++) {
518 $merge_arr[$key_arr_0[$i]] = $node_arr_0[$key_arr_0[$i]];
521 for ($j = 0;$j < $num_key_1;$i++) {
522 $merge_arr[$key_arr_1[$i]] = $node_arr_1[$key_arr_1[$i]];
529 //Broken out of parseExpr Sept 7, 2006 David Lippman for
530 //ASCIIMathML 1.4.7 compatibility
531 function parseIntExpr()
533 $sym_0 = $this->getSymbol();
534 $node_0 = $this->parseSmplExpr();
535 $sym = $this->getSymbol();
537 if (isset($sym['infix']) && $sym['input'] != '/') {
538 $this->chopExpr($sym['symlen']);
539 $node_1 = $this->parseSmplExpr();
541 if ($node_1 === FALSE) { //show box in place of missing argument
542 $node_1 = $this->emptyNode();//??
544 $node_1->removeBrackets();
547 // If 'sub' -- subscript
548 if ($sym['input'] == '_') {
550 $sym_1 = $this->getSymbol();
552 // If 'sup' -- superscript
553 if ($sym_1['input'] == '^') {
554 $this->chopExpr($sym_1['symlen']);
555 $node_2 = $this->parseSmplExpr();
556 $node_2->removeBrackets();
558 $node_3 = $this->createNode();
559 $node_3->setName(isset($sym_0['underover']) ?
'munderover' : 'msubsup');
560 $node_3->addChild($node_0);
561 $node_3->addChild($node_1);
562 $node_3->addChild($node_2);
564 $node_4 = $this->createNode();
565 $node_4->setName('mrow');
566 $node_4->addChild($node_3);
570 $node_2 = $this->createNode();
571 $node_2->setName(isset($sym_0['underover']) ?
'munder' : 'msub');
572 $node_2->addChild($node_0);
573 $node_2->addChild($node_1);
578 $node_2 = $this->createNode();
579 $node_2->setName($sym['tag']);
580 $node_2->addChild($node_0);
581 $node_2->addChild($node_1);
585 } elseif ($node_0 !== FALSE) {
588 return $this->emptyNode();
595 // Child/Fragment array
598 // Deal whole expressions like 'ax + by + c = 0' etc.
600 $sym_0 = $this->getSymbol();
601 $node_0 = $this->parseIntExpr();
602 $sym = $this->getSymbol();
605 if (isset($sym['infix']) && $sym['input'] == '/') {
606 $this->chopExpr($sym['symlen']);
607 $node_1 = $this->parseIntExpr();
609 if ($node_1 === FALSE) { //should show box in place of missing argument
610 $node_1 = $this->emptyNode();
614 $node_1->removeBrackets();
616 // If 'div' -- divide
617 $node_0->removeBrackets();
618 $node_2 = $this->createNode();
619 $node_2->setName($sym['tag']);
620 $node_2->addChild($node_0);
621 $node_2->addChild($node_1);
622 $node_arr[$node_2->getId()] = $node_2;
624 } elseif ($node_0 !== FALSE) {
625 $node_arr[$node_0->getId()] = $node_0;
627 } while (!isset($sym['right_bracket']) && $sym !== FALSE && $sym['output'] != '');
630 // Possibly to deal with matrices
631 if (isset($sym['right_bracket'])) {
632 $node_cnt = count($node_arr);
633 $key_node_arr = array_keys($node_arr);
636 $node_5 = $node_arr[$key_node_arr[$node_cnt-1]];
637 $node_6 = $node_arr[$key_node_arr[$node_cnt-2]];
643 // Dealing with matrices
644 if ($node_5 !== FALSE && $node_6 !== FALSE &&
646 $node_5->getName() == 'mrow' &&
647 $node_6->getName() == 'mo' &&
648 $node_6->getContent() == ',') {
650 // Checking if Node 5 has a LastChild
651 if ($node_7 = $node_5->getLastChild()) {
652 $node_7_cntnt = $node_7->getContent();
654 $node_7_cntnt = FALSE;
657 // If there is a right bracket
658 if ($node_7 !== FALSE && ($node_7_cntnt == ']' ||
$node_7_cntnt == ')')) {
660 // Checking if Node 5 has a firstChild
661 if ($node_8 = $node_5->getFirstChild()) {
662 $node_8_cntnt = $node_8->getContent();
664 $node_8_cntnt = FALSE;
667 // If there is a matching left bracket
668 if ($node_8 !== FALSE &&
669 (($node_8_cntnt == '(' && $node_7_cntnt == ')' && $sym['output'] != '}') ||
670 ($node_8_cntnt == '[' && $node_7_cntnt == ']'))) {
673 $comma_pos_arr = array();
677 while ($i < $node_cnt && $is_mtrx_flg) {
678 $tmp_node = $node_arr[$key_node_arr[$i]];
680 if($tmp_node_first = $tmp_node->getFirstChild()) {
681 $tnfc = $tmp_node_first->getContent();
686 if($tmp_node_last = $tmp_node->getLastChild()) {
687 $tnlc = $tmp_node_last->getContent();
692 if (isset($key_node_arr[$i+
1])) {
693 $next_tmp_node = $node_arr[$key_node_arr[$i+
1]];
694 $ntnn = $next_tmp_node->getName();
695 $ntnc = $next_tmp_node->getContent();
701 // Checking each node in node array for matrix criteria
703 $is_mtrx_flg = $tmp_node->getName() == 'mrow' &&
704 ($i == $node_cnt-1 ||
$ntnn == 'mo' && $ntnc == ',') &&
705 $tnfc == $node_8_cntnt && $tnlc == $node_7_cntnt;
709 for ($j = 0;$j < $tmp_node->getNumChild();$j++
) {
710 $tmp_c_node = $tmp_node->getChildByIdx($j);
712 if ($tmp_c_node->getContent() == ',') {
713 $comma_pos_arr[$i][] = $j;
718 if ($is_mtrx_flg && $i > 1) {
720 $cnt_cpan = isset($comma_pos_arr[$i]) ?
count($comma_pos_arr[$i]) : NULL;
721 $cnt_cpap = isset($comma_pos_arr[$i-2]) ?
count($comma_pos_arr[$i-2]) : NULL;
722 $is_mtrx_flg = $cnt_cpan == $cnt_cpap;
728 // If the node passes the matrix tests
730 $tab_node_arr = array();
732 for ($i = 0;$i < $node_cnt;$i +
= 2) {
733 $tmp_key_node_arr = array_keys($node_arr);
734 if (!($tmp_node = $node_arr[$tmp_key_node_arr[0]])) {
737 $num_child = $tmp_node->getNumChild();
740 $tmp_node->removeFirstChild();
742 $row_node_arr = array();
743 $row_frag_node_arr = array();
745 for ($j = 1;$j < ($num_child-1);$j++
) {
746 if (isset($comma_pos_arr[$i][$k]) &&
747 $j == $comma_pos_arr[$i][$k]) {
749 $tmp_node->removeFirstChild();
751 $tmp_c_node = $this->createNode();
752 $tmp_c_node->setName('mtd');
753 $tmp_c_node->addChildArr($row_frag_node_arr);
754 $row_frag_node_arr = array();
756 $row_node_arr[$tmp_c_node->getId()] = $tmp_c_node;
761 if ($tmp_c_node = $tmp_node->getFirstChild()) {
762 $row_frag_node_arr[$tmp_c_node->getId()] = $tmp_c_node;
763 $tmp_node->removeFirstChild();
768 $tmp_c_node = $this->createNode();
769 $tmp_c_node->setName('mtd');
770 $tmp_c_node->addChildArr($row_frag_node_arr);
772 $row_node_arr[$tmp_c_node->getId()] = $tmp_c_node;
774 if (count($node_arr) > 2) {
775 $tmp_key_node_arr = array_keys($node_arr);
776 unset($node_arr[$tmp_key_node_arr[0]]);
777 unset($node_arr[$tmp_key_node_arr[1]]);
780 $tmp_c_node = $this->createNode();
781 $tmp_c_node->setName('mtr');
782 $tmp_c_node->addChildArr($row_node_arr);
784 $tab_node_arr[$tmp_c_node->getId()] = $tmp_c_node;
787 $tmp_c_node = $this->createNode();
788 $tmp_c_node->setName('mtable');
789 $tmp_c_node->addChildArr($tab_node_arr);
791 if (isset($sym['invisible'])) {
792 $tmp_c_node->setAttr('columnalign','left');
795 $key_node_arr = array_keys($node_arr);
796 $tmp_c_node->setId($key_node_arr[0]);
798 $node_arr[$tmp_c_node->getId()] = $tmp_c_node;
804 $this->chopExpr($sym['symlen']);
805 if (!isset($sym['invisible'])) {
806 $node_7 = $this->createNode();
807 $node_7->setName('mo');
808 $node_7->setContent($sym['output']);
809 $node_arr[$node_7->getId()] = $node_7;
816 function parseSmplExpr()
818 $sym = $this->getSymbol();
820 if (!$sym ||
isset($sym['right_bracket'])) //return FALSE;
821 return $this->emptyNode();
823 $this->chopExpr($sym['symlen']);
825 // 2005-06-11 wes: add definition type support
826 if(isset($sym['definition'])) {
827 $this->pushExpr($sym['output']);
828 $sym = $this->getSymbol();
829 $this->chopExpr($sym['symlen']);
832 if (isset($sym['left_bracket'])) {
833 $node_arr = $this->parseExpr();
835 if (isset($sym['invisible'])) {
836 $node_0 = $this->createNode();
837 $node_0->setName('mrow');
838 $node_0->addChildArr($node_arr);
842 $node_0 = $this->createNode();
843 $node_0->setName('mo');
844 $node_0->setContent($sym['output']);
846 $node_1 = $this->createNode();
847 $node_1->setName('mrow');
848 $node_1->addChild($node_0);
849 $node_1->addChildArr($node_arr);
853 } elseif (isset($sym['unary'])) {
855 if ($sym['input'] == 'sqrt') {
856 $node_0 = $this->parseSmplExpr();
857 $node_0->removeBrackets();
859 $node_1 = $this->createNode();
860 $node_1->setName($sym['tag']);
861 $node_1->addChild($node_0);
864 } elseif (isset($sym['func'])) { //added 2006-9-7 David Lippman
865 $expr = ltrim($this->getCurrExpr());
867 $node_0 = $this->parseSmplExpr();
868 //$node_0->removeBrackets();
869 if ($st=='^' ||
$st == '_' ||
$st=='/' ||
$st=='|' ||
$st==',') {
870 $node_1 = $this->createNode();
871 $node_1->setName($sym['tag']);
872 $node_1->setContent($sym['output']);
873 $this->setCurrExpr($expr);
876 $node_1 = $this->createNode();
877 $node_1->setName('mrow');
878 $node_2 = $this->createNode();
879 $node_2->setName($sym['tag']);
880 $node_2->setContent($sym['output']);
881 $node_1->addChild($node_2);
882 $node_1->addChild($node_0);
885 } elseif ($sym['input'] == 'text' ||
$sym['input'] == 'mbox' ||
$sym['input'] == '"') {
886 $expr = ltrim($this->getCurrExpr());
887 if ($sym['input']=='"') {
889 $txt = substr($expr,0,strpos($expr,$end_brckt));
902 $end_brckt = chr(11); // A character that will never be matched.
905 $txt = substr($expr,1,strpos($expr,$end_brckt)-1);
908 //$txt = substr($expr,1,strpos($expr,$end_brckt)-1);
911 $node_0 = $this->createNode();
912 $node_0->setName('mrow');
915 if ($txt{0} == " ") {
916 $node_1 = $this->createNode();
917 $node_1->setName('mspace');
918 $node_1->setAttr('width','1ex');
920 $node_0->addChild($node_1);
923 $node_3 = $this->createNode();
924 $node_3->setName($sym['tag']);
925 $node_3->setContent(trim($txt));
927 $node_0->addChild($node_3);
929 if ($len > 1 && $txt{$len-1} == " ") {
930 $node_2 = $this->createNode();
931 $node_2->setName('mspace');
932 $node_2->setAttr('width','1ex');
934 $node_0->addChild($node_2);
937 $this->chopExpr($len+
2);
941 } elseif (isset($sym['acc'])) {
942 $node_0 = $this->parseSmplExpr();
943 $node_0->removeBrackets();
945 $node_1 = $this->createNode();
946 $node_1->setName($sym['tag']);
947 $node_1->addChild($node_0);
949 $node_2 = $this->createNode();
950 $node_2->setName('mo');
951 $node_2->setContent($sym['output']);
953 $node_1->addChild($node_2);
956 // Font change commands -- to complete
958 } elseif (isset($sym['binary'])) {
961 $node_0 = $this->parseSmplExpr();
962 $node_0->removeBrackets();
964 $node_1 = $this->parseSmplExpr();
965 $node_1->removeBrackets();
967 /* 2005-06-05 wes: added stackrel */
968 if ($sym['input'] == 'root' ||
$sym['input'] == 'stackrel') {
969 $node_arr[$node_1->getId()] = $node_1;
970 $node_arr[$node_0->getId()] = $node_0;
971 } elseif ($sym['input'] == 'frac') {
972 $node_arr[$node_0->getId()] = $node_0;
973 $node_arr[$node_1->getId()] = $node_1;
976 $node_2 = $this->createNode();
977 $node_2->setName($sym['tag']);
978 $node_2->addChildArr($node_arr);
981 } elseif (isset($sym['infix'])) {
982 $node_0 = $this->createNode();
983 $node_0->setName('mo');
984 $node_0->setContent($sym['output']);
987 } elseif (isset($sym['space'])) {
988 $node_0 = $this->createNode();
989 $node_0->setName('mrow');
991 $node_1 = $this->createNode();
992 $node_1->setName('mspace');
993 $node_1->setAttr('width',$sym['space']);
995 $node_2 = $this->createNode();
996 $node_2->setName($sym['tag']);
997 $node_2->setContent($sym['output']);
999 $node_3 = $this->createNode();
1000 $node_3->setName('mspace');
1001 $node_3->setAttr('width',$sym['space']);
1003 $node_0->addChild($node_1);
1004 $node_0->addChild($node_2);
1005 $node_0->addChild($node_3);
1011 $node_0 = $this->createNode();
1012 $node_0->setName($sym['tag']);
1013 $node_0->setContent($sym['output']);
1017 // Return an empty node
1018 return $this->emptyNode();
1021 function getMathML()
1023 $root = $this->_node_arr
[0];
1024 return($root->dumpXML());
1027 function getCurrExpr()
1029 return($this->_curr_expr
);
1032 function setCurrExpr($str)
1034 $this->_curr_expr
= $str;
1039 return($this->_expr
);
1042 function getPrevExpr()
1044 return($this->_prev_expr
);
1047 function createNode()
1049 $node = new MathMLNode($this->_node_cntr
);
1050 // $node->setNamespaceAlias('m');
1051 $this->_node_arr
[$this->_node_cntr
] = $node;
1052 $this->_node_cntr++
;
1057 * Gets the largest symbol in the expression (greedy). Changed from non-greedy 26-Apr-2006
1059 * @parameter boolean[optional] Chop original string?
1065 function getSymbol($chop_flg = FALSE)
1067 // Implemented a reverse symbol matcher.
1068 // Instead of going front to back, it goes back to front. Steven 26-Apr-2006
1069 $chr_cnt = strlen($this->_curr_expr
);
1071 if ($chr_cnt == 0) return FALSE;
1073 for ($i = $chr_cnt; $i > 0; $i--) {
1074 $sym_0 = substr($this->_curr_expr
,0,$i);
1076 // Reading string for numeric values
1077 if (is_numeric($sym_0)) {
1079 if ($chop_flg) $this->chopExpr($i);
1080 return array('input'=>$sym_0, 'tag'=>'mn', 'output'=>$sym_0, 'symlen'=>$i);
1082 } elseif (isset($this->_symbol_arr
[$sym_0])) {
1084 if ($chop_flg) $this->chopExpr($i);
1085 $sym_arr = $this->_symbol_arr
[$sym_0];
1086 $sym_arr['symlen'] = $i;
1091 // Reading string for alphabetic constants and the minus sign
1092 $char = $this->_curr_expr
{0};
1093 $len_left = $chop_flg ?
$this->chopExpr(1) : strlen($this->_curr_expr
)-1;
1095 // Deals with expressions of length 1
1096 if ($len_left == 0 && isset($this->_symbol_arr
[$char])) {
1097 $sym_arr = $this->_symbol_arr
[$char];
1098 $sym_arr['symlen'] = 1;
1101 $tag = preg_match('/[a-z]/i',$char) ?
'mi' : 'mo';
1102 return array('input'=>$char, 'tag'=>$tag, 'output'=>$char, 'symlen'=>1);
1106 function chopExpr($strlen)
1108 $this->_prev_expr
= $this->_curr_expr
;
1110 if ($strlen == strlen($this->_curr_expr
)) {
1111 $this->_curr_expr
= '';
1114 $this->_curr_expr
= ltrim(substr($this->_curr_expr
,$strlen));
1115 return(strlen($this->_curr_expr
));