PHP | DOMDocument validate() Function Last Updated : 26 Feb, 2020 Comments Improve Suggest changes Like Article Like Report 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 <?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 <?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 Create Quiz Comment G gurrrung Follow 0 Improve G gurrrung Follow 0 Improve Article Tags : Web Technologies PHP PHP-function PHP-DOM Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like