Real Initial commit
This commit is contained in:
15
xmlToJson.php
Normal file
15
xmlToJson.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
libxml_use_internal_errors(TRUE);
|
||||
$objXmlDocument = simplexml_load_file("ttime-res/Resultater.xml");
|
||||
|
||||
if ($objXmlDocument === FALSE) {
|
||||
foreach(libxml_get_errors() as $error) {
|
||||
//error
|
||||
}
|
||||
exit;
|
||||
}
|
||||
$objJsonDocument = json_encode($objXmlDocument);
|
||||
$arrOutput = json_decode($objJsonDocument, TRUE);
|
||||
|
||||
echo $objJsonDocument;
|
||||
?>
|
||||
Reference in New Issue
Block a user