PHP code example of abgeo / xml-to-json

1. Go to this page and download the library: Download abgeo/xml-to-json 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/ */

    

abgeo / xml-to-json example snippets


$converter = new StringConverter();
$xmlContent = file_get_contents(__DIR__ . '/example.xml');

$jsonContent = $converter->convert($xmlContent);

echo $jsonContent;

//{
//    "profile": {
//    "firstName": "Temuri",
//        "lastName": "Takalandze",
//        "active": "true",
//        "position": {
//        "title": "Developer",
//            "department": {
//            "title": "IT"
//            }
//        }
//    }
//}

$converter = new FileConverter();

$converter->convert(__DIR__ . '/example.xml', __DIR__ . '/example.json');