ahmeti / ubl-parser-php

UBL Parser (PHP)
5 stars 3 forks source link

UBL Parser Php

include 'UBLParser.php';

$xml = file_get_contents('Path of Invoice UBL (XML) File');

$parser = new UBLParser;

$parser->set($xml);

$result = $parser->get();

print_r($result);

ubl parser php