gulios/sxf-xml

SXF XML Component

1.0.0 2018-08-10 15:49 UTC

This package is auto-updated.

Last update: 2024-04-06 23:22:17 UTC


README

The XML component helps with XML data.

Example usage:
  1. Use Composer to install SXF XML into your project:

    composer require gulios/sxf-xml
  2. Simple usage:

$this->xmlDataSXF = new SimpleXML('<xml/>');
$test = $this->xmlDataSXF->addChild('test');
$test->addAttribute('name', 'someValue');