gulios/sxf-xml

SXF XML Component

Installs: 27

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/gulios/sxf-xml

1.0.0 2018-08-10 15:49 UTC

This package is auto-updated.

Last update: 2025-09-07 02:31:09 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');