mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
9 lines
172 B
PHP
9 lines
172 B
PHP
<?php
|
|
$dom = new domDocument;
|
|
$dom->load(dirname(__FILE__) . "/thedata.xml");
|
|
if (@$dom->validate()) {
|
|
echo "Document is valid";
|
|
} else {
|
|
echo "Document is invalid";
|
|
}
|
|
?>
|