Skip to content

Version 0.3.0

Compare
Choose a tag to compare
@veewee veewee released this 03 Mar 14:20
v0.3.0
c603659

Encoding

Total issues resolved: 1

$data = xml_decode(
    file_get_contents('file.xml'),
    validator(xsd_validator('some-schema.xsd'))
);

// You can read or change the data
$data['root']['name'] = 'MyName';

// And finally convert it back to XML!
$xml = xml_encode($data, utf8(), pretty_print());