PHP code example of rmtram / xml-validator

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

    

rmtram / xml-validator example snippets



$validator = new Validator();

// Syntax to evaluate whether correct.
$validator->addEvaluation(new SyntaxEvaluation());
$validator->addEvaluation(new RequiredEvaluation(['test']));
$xml = '<?xml version="1.0" encoding="UTF-8"


// success  = new Validator();

// xml data
$xml = '...'; 

// Evaluation(new RequiredEvaluation($columns));

// true
$validator->validate($xml)



// success (new RequiredEvaluation($columns));

// true
$validator->validate($xml)


//fail red(nest data)
$validator = new Validator();

// xml data
$xml = '...'; 

//