function simple_html_dom_node::xmltext in simplehtmldom API 5.2
Same name and namespace in other branches
- 6 simplehtmldom/simple_html_dom.php \simple_html_dom_node::xmltext()
- 7 simplehtmldom/simple_html_dom.php \simple_html_dom_node::xmltext()
1 call to simple_html_dom_node::xmltext()
- simple_html_dom_node::__get in simplehtmldom/
simple_html_dom.php
File
- simplehtmldom/
simple_html_dom.php, line 221
Class
Code
function xmltext() {
$ret = $this
->innertext();
$ret = str_ireplace('<![CDATA[', '', $ret);
$ret = str_replace(']]>', '', $ret);
return $ret;
}