PHP code example of relisoft / xmlparser

1. Go to this page and download the library: Download relisoft/xmlparser library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

relisoft / xmlparser example snippets


/**
* @var Heureka
* @inject
*/
public $heureka;

public function actionDefault(){
    $heureka = $this->heureka;
    $data = $heureka->decode(FileSystem::read('https://.../feed_heureka.xml'),'xml');
    $heureka->associateData($data);
    $data = $heureka->getData();
    Debugger::barDump($data,"Data");
}