Is there a way (without installing any libraries) of validating XML using a custom DTD in PHP?
|
|
|
|
|
|
|
Take a look at PHP's DOM, especially DOMDocument::schemaValidate and DOMDocument::validate. The example for DOMDocument::validate is fairly simple:
|
||||
|
|
|
Does this help? http://www.topxml.com/php_xml_dom/dom_document_function_validate.asp
|
||
|
