vote up 1 vote down star

Is there a way (without installing any libraries) of validating XML using a custom DTD in PHP?

flag

2 Answers

vote up 3 vote down check

Take a look at PHP's DOM, especially DOMDocument::schemaValidate and DOMDocument::validate.

The example for DOMDocument::validate is fairly simple:

<?php
$dom = new DOMDocument;
$dom->Load('book.xml');
if ($dom->validate()) {
    echo "This document is valid!\n";
}
?>
link|flag
the only way to get the validation error is to use a custom error handler. really ugly. php sucks at error handling – Andrei Savu Apr 2 at 11:29
uk3.php.net/manual/en/… looks like there is a better way than a custom error handler – Andrei Savu Apr 2 at 11:47
vote up 1 vote down

Does this help? http://www.topxml.com/php_xml_dom/dom_document_function_validate.asp

<?php

$doc = new DomDocument;

//declare file variable

$file = 'C:/topxml_demo/php/xml_files/employee.xml';

//declare DTD

$dtd  = 'C:/topxml_demo/php/xml_files/employee.dtd';

// Load the xml file into DOMDocument

$doc->Load($file);

//validate the DOMDocument

if ($doc->validate()) {

    print "$file is valid against the DTD.\n";

 } else {

     print "$file is invalid against the DTD.\n";

 }

?>
link|flag
you're not using the $dtd variable anywhere there. – nickf Dec 5 '08 at 3:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.