Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17244 программиста и 1834 робота. Сейчас ищут 1692 программиста ...
XML_Util::reverseEntities
Вернуться к: XML_Util
XML_Util::reverseEntities
XML_Util::reverseEntities() – replace XML entities
Synopsis
require_once 'XML/Util.php';
string XML_Util::reverseEntities ( string $string )
This is the reverse function to XML_Util::replaceEntities()(). It replaces all XML (or HTML) entities in a string by their corresponding characters. This can be useful when working with XML documents without using an XML parser.
This method has been added in XML_Util 1.0.0.
Parameter
-
string $string - string, in which entities have to be removed
Return value
string string with entities removed
Note
This function should be called statically.
Вернуться к: XML_Util