On this page
AtomParser::xml_escape( $content )
Source
File: wp-includes/atomlib.php. View all references
function xml_escape($content)
{
return str_replace(array('&','"',"'",'<','>'),
array('&','"',''','<','>'),
$content );
}
Related
Used By
| Used By | Description |
|---|---|
| AtomParser::end_element() wp-includes/atomlib.php | |
| AtomParser::start_element() wp-includes/atomlib.php |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/atomparser/xml_escape