mercurysolutions/mathml-bundle

A MathML parser for PHP

Installs: 11 372

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

3.0.1 2022-06-24 10:01 UTC

This package is auto-updated.

Last update: 2025-03-24 15:59:57 UTC


README

Usage

$factory = $container->get('mercurysolutions.mathml');
$mathml = $factory->create('<mathml><apply><sum/><ci>x</ci><cn>2</cn></apply></mathml>');
$result = $mathml->calculate(['x' => 4]); // $result === 6