1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<html>
<body>
<pre>
<?php
function HandleXmlError($errno, $errstr, $errfile, $errline)
{
echo $errno." ".$errstr."<br>";
}
$file = 'example1c.xml';
$dom = new DomDocument;
$dom->preserveWhiteSpace = FALSE;
set_error_handler('HandleXmlError');
$loadstate=$dom->load($file);
if($loadstate){
$validatestate=$dom->validate();
if($validatestate){
echo "Validation successful!<br>";
}else{
echo "Validation test failed!<br>";
}
}else{
echo "Well-formedness test Failed!<br>";
}
restore_error_handler();
?>
</pre>
</body>
</html>
|