PHP 7.0.6 Released

DOMDocument::normalizeDocument

(PHP 5, PHP 7)

DOMDocument::normalizeDocumentNormalizes the document

Description

public void DOMDocument::normalizeDocument ( void )

This method acts as if you saved and then loaded the document, putting the document in a "normal" form.

Return Values

No value is returned.

See Also

User Contributed Notes

lingasamy dot sakthivel at gmail dot com
1 year ago
You can use this in this way.

$doc = new DOMDocument('1.0', 'UTF-8');
$doc->loadHTML($content); // html content
$xpath = new DOMXPath($doc);
$doc->normalizeDocument();

Note that, you can use $doc->normalizeDocument(); at any point of time.
To Top