gulios / sxf-xml
SXF XML Component
1.0.0
2018-08-10 15:49 UTC
Requires
- php: >=7.2
Requires (Dev)
- filp/whoops: 2.1.*
- fzaninotto/faker: 1.7.*
- phpunit/phpunit: 7.0.*
This package is auto-updated.
Last update: 2024-11-07 00:48:15 UTC
README
The XML component helps with XML data.
Example usage:
-
Use Composer to install SXF XML into your project:
composer require gulios/sxf-xml
-
Simple usage:
$this->xmlDataSXF = new SimpleXML('<xml/>'); $test = $this->xmlDataSXF->addChild('test'); $test->addAttribute('name', 'someValue');