PHP code example of harmbandstra / edexmllib
1. Go to this page and download the library: Download harmbandstra/edexmllib 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/ */
harmbandstra / edexmllib example snippets
$xml = file_get_contents('path_to_file');
try {
$edex = EdexmlFactory::load($xml);
} catch (ValidationException $exception) {
// Handle exception
}
foreach ($edex->getGroepen()->getGroep() as $groep) {
echo $groep->getNaam();
}
foreach ($edex->getLeerlingen() as $leerling) {
echo $leerling->getGebruikersnaam();
}
$xml = file_get_contents('path_to_file');
try {
$edex = EdexmlFactory::load(
EdexmlFactory::stripToevoegingen($xml)
);
} catch (ValidationException $exception) {
// Handle exception
}
$xml = file_get_contents('path_to_file');
$edex = EdexmlFactory::load($xml, false);