PHP code example of larataj / laravel-xml-helpers

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

    

larataj / laravel-xml-helpers example snippets


'providers' => [
    ...
    Larataj\XmlHelpers\HelpersServiceProvider::class,
],

use Larataj\XmlHelpers\ResponseHelper;

$array = [
    'name' => 'John Doe',
    'email' => '[email protected]',
    'roles' => [
        'admin',
        'editor',
    ],
];

$xml = ResponseHelper::arrayToXml($array);

echo $xml;

use Larataj\XmlHelpers\ResponseHelper;

return ResponseHelper::xml([
    'status' => 'success',
    'message' => 'Данные успешно обработаны',
    'data' => [
        'id' => 123,
        'name' => 'John Doe',
    ],
]);

return response()->xml([
    'status' => 'success',
    'message' => 'Данные обработаны',
    'data' => [
        'id' => 123,
        'name' => 'John Doe',
    ],
]);

Route::get('/test-xml', function () {
    return response()->xml([
        'name' => 'Laravel',
        'version' => '10.x',
        'features' => [
            'fast',
            'secure',
            'elegant'
        ]
    ]);
});