Thursday, October 23, 2025
HomeLanguagesPHP | DOMDocument validate() Function

PHP | DOMDocument validate() Function

The DOMDocument::validate() function is an inbuilt function in PHP which is used to validate the document based on its DTD (Document Type Definition). DTD defines the rules or structure to be followed by the XML file and if a XML document doesn’t follows this format then this function will return false.

Syntax:

bool DOMDocument::validate( void )

Parameters: This function doesn’t accept any parameters.

Return Value: This function returns TRUE if document follows the DTD or FALSE.

Below examples illustrate the DOMDocument::validate() function in PHP:

Example 1:




<?php
  
// Create a new DOMDocument
$doc = new DOMDocument;
  
// Load the XML with DTD rule to have
// a root element with first, second,
// and third as its three children
$doc->loadXML("<?xml version=\"1.0\"?>
<!DOCTYPE root [
<!ELEMENT root (first, second, third)>
<!ELEMENT first (#PCDATA)>
<!ELEMENT second (#PCDATA)>
<!ELEMENT third (#PCDATA)>
]>
  
<!-- Create a XML following the DTD -->
<root>
<first>Hello</first>
<second>There</second>
<third>World</third>
</root>");
  
// Check if XML follows the DTD rule
if ($doc->validate()) {
    echo "This document is valid!\n";
}
?>


Output:

This document is valid!

Example 2:




<?php
  
// Create a new DOMDocument
$doc = new DOMDocument;
  
// Load the XML
$doc->loadXML("<?xml version=\"1.0\"?>
<!DOCTYPE root [
<!ELEMENT root (one, two, three)>
<!ELEMENT one (#PCDATA)>
<!ELEMENT two (#PCDATA)>
<!ELEMENT three (#PCDATA)>
]>
<!-- Create a XML voilating the DTD -->
  
<root>
<one>Hello</one>
<two>World</two>
</root>");
  
if (!$doc->validate()) {
    echo "This document is not valid!";
}
?>


Output:

This document is not valid!

Reference: https://www.php.net/manual/en/domdocument.validate.php

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS