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â€;
}
Copyright © 2011 - All Rights Reserved - Softron.in
Template by Softron Technology