function filter_dom_load
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.
2 calls to filter_dom_load()
- _filter_html in modules/
filter/ filter.module - Implements callback_filter_process().
- _filter_htmlcorrector in modules/
filter/ filter.module - Implements callback_filter_process().
File
-
modules/
filter/ filter.module, line 1106
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.