This commit is contained in:
2026-07-23 10:37:26 +08:00
parent 090abf48fa
commit 40add876cd
3503 changed files with 838201 additions and 5 deletions
+46
View File
@@ -0,0 +1,46 @@
## Writers
### MathML
The name of the writer is `MathML`.
``` php
<?php
use PhpOffice\Math\Element;
use PhpOffice\Math\Math;
use PhpOffice\Math\Writer\MathML;
$math = new Math();
$math->add(new Element\Operator('+'));
$writer = new MathML();
$output = $writer->write($math);
```
### OfficeMathML
The name of the writer is `OfficeMathML`.
``` php
<?php
use PhpOffice\Math\Element;
use PhpOffice\Math\Math;
use PhpOffice\Math\Writer\OfficeMathML;
$math = new Math();
$math->add(new Element\Operator('+'));
$writer = new OfficeMathML();
$output = $writer->write($math);
```
## Methods
### writer
The method has one parameter :
* `PhpOffice\Math\Math` **$math**
The method returns a `string`.