Source Code : PHP validate XML against XSD for more detailed error.

PHP validate XML against XSD for more detailed error.

PHP Code :

function libxml_display_error($error)
{
$return = â€
\n”;
switch ($error->level) {
case LIBXML_ERR_WARNING:
$return .= â€Warning $error->code: â€;
break;
case LIBXML_ERR_ERROR:
$return .= â€Error $error->code: â€;
break;
case LIBXML_ERR_FATAL:
$return .= â€Fatal Error $error->code: â€;
break;
}
$return .= trim($error->message);
if ($error->file) {
$return .= â€ in $error->file”;
}
$return .= â€ on line $error->line\n”;

return $return;
}

function libxml_display_errors() {
$errors = libxml_get_errors();
foreach ($errors as $error) {
print libxml_display_error($error);
}
libxml_clear_errors();
}

// Enable user error handling
libxml_use_internal_errors(true);

$xml = new DOMDocument();
$xml->load(‘eMP-example.xml’);

if (!$xml->schemaValidate(‘schema.xsd’)) {
print â€™DOMDocument::schemaValidate() Generated Errors!’;
libxml_display_errors();
}
else {
echo â€validated”;
}