Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/znframework/package-xml

ZN Framework XML Package
https://github.com/znframework/package-xml

Last synced: about 2 months ago
JSON representation

ZN Framework XML Package

Awesome Lists containing this project

README

        










ZN Framework XML Package



Follow the steps below for installation and use.

Installation



You only need to run the following code for the installation.

```
composer require znframework/package-xml
```

Documentation



Click for documentation of your library.

Example Usage



Basic level usage is shown below.

```php
'media',
'attr' => ['id' => 1],
'child' =>
[
['name' => 'video', 'attr' => ['id' => 2], 'content' => 'Vidyo'],
[
'name' => 'music',
'attr' => ['id' => 3],
'child' =>
[
['name' => 'video', 'attr' => ['id' => 2], 'content' => 'Vidyo'],
['name' => 'video', 'attr' => ['id' => 2], 'content' => 'Vidyo'],
['name' => 'video', 'attr' => ['id' => 2], 'content' => 'Vidyo']
]
]
]
]);

Output::display($data);
```
```xml

Vidyo

Vidyo
Vidyo
Vidyo

```