Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетил 18891 программист и 1635 роботов. Сейчас ищут 2093 программиста ...
Example
Вернуться к: XML_DTD
Example
Example – Example usage of XML_DTD
You can validate a XML file against a DTD using isValid() like in the example below:
<?php
require_once 'XML/DTD/XmlValidator.php';
$dtd_file = realpath('myfile.dtd');
$xml_file = realpath('myfile.xml');
$validator = new XML_DTD_XmlValidator();
if (!$validator->isValid($dtd_file, $xml_file)) {
die($validator->getMessage());
}
?>
isValid() will return true when the XML document validates and false otherwise.
This is pretty much the most common usage of XML_DTD and all you need to know to get started.
Вернуться к: XML_DTD