16 lines
349 B
PHP
Executable File
16 lines
349 B
PHP
Executable File
<?php
|
|
libxml_use_internal_errors(TRUE);
|
|
$objXmlDocument = simplexml_load_file("resultater/Resultater.xml");
|
|
|
|
if ($objXmlDocument === FALSE) {
|
|
foreach(libxml_get_errors() as $error) {
|
|
//error
|
|
}
|
|
exit;
|
|
}
|
|
$objJsonDocument = json_encode($objXmlDocument);
|
|
$arrOutput = json_decode($objJsonDocument, TRUE);
|
|
|
|
echo $objJsonDocument;
|
|
?>
|