Blame | Last modification | View Log | Download
## UsageTo create an identifier, use the `PhpOffice\Math\Element\Identifier` class.### Methods#### getValueThe method has no parameter.#### setValueThe method has one parameter :* `string` **$value**## Example### Math<math display="block"><mi>a</mi></math>### XML``` xml<math display="block"><mi>a</mi></math>```### PHP``` php<?phpuse PhpOffice\Math\Element;use PhpOffice\Math\Math;$math = new Math();$identifier = new Element\Identifier('a');$math->add($identifier);```