function filter_dom_load
filter_dom_load($text)
Parses an HTML snippet and returns it as a DOM object.
This function loads the body part of a partial (X)HTML document and returns a full DOMDocument object that represents this document. You can use filter_dom_serialize() to serialize this DOMDocument back to a XHTML snippet.
Parameters
$text: The partial (X)HTML snippet to load. Invalid mark-up will be corrected on import.
Return value
A DOMDocument that represents the loaded (X)HTML snippet.
File
- modules/filter/filter.module, line 1104
- Framework for handling the filtering of content.
Code
function filter_dom_load($text) { $dom_document = new DOMDocument(); // Ignore warnings during HTML soup loading. @$dom_document->loadHTML('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head><body>' . $text . '</body></html>'); return $dom_document; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!filter!filter.module/function/filter_dom_load/7.x