Forum


Replies: 4   Views: 49
Formula inside table

Posted by ArtemKo  · 19-02-2025 - 03:21

Hello!This code creates a corrupted file. 
What could be the problem? 

require_once 'classes/CreateDocx.php';
$docx = new CreateDocx();
$math = new WordFragment($docx);
$math->addMathEquation(
'<m:oMathPara>
       <m:oMath><m:r><m:t>±∞=~×</m:t></m:r></m:oMath>
   </m:oMathPara>', 'omml'
);
$valuesTable = array(
    array(
        $math,
    )
);
$docx->addTable($valuesTable);
$docx->createDocx('output');