]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/XML.php
Remove unused dependency
[friendica.git] / src / Util / XML.php
index 3159fb95e9d1add80e8e7f3223b150587af6fa4c..51f424984ff06b77f5b6eaddf281e6d88c5b8f9c 100644 (file)
@@ -10,12 +10,12 @@ use Friendica\Core\System;
 use SimpleXMLElement;
 
 /**
- * @brief This class contain methods to work with XML data
+ * This class contain methods to work with XML data
  */
 class XML
 {
        /**
-        * @brief Creates an XML structure out of a given array
+        * Creates an XML structure out of a given array
         *
         * @param array  $array         The array of the XML structure that will be generated
         * @param object $xml           The createdXML will be returned by reference
@@ -114,7 +114,7 @@ class XML
        }
 
        /**
-        * @brief Copies an XML object
+        * Copies an XML object
         *
         * @param object $source      The XML source
         * @param object $target      The XML target
@@ -134,7 +134,7 @@ class XML
        }
 
        /**
-        * @brief Create an XML element
+        * Create an XML element
         *
         * @param \DOMDocument $doc        XML root
         * @param string       $element    XML element name
@@ -156,7 +156,7 @@ class XML
        }
 
        /**
-        * @brief Create an XML and append it to the parent object
+        * Create an XML and append it to the parent object
         *
         * @param \DOMDocument $doc        XML root
         * @param object $parent     parent object
@@ -172,7 +172,7 @@ class XML
        }
 
        /**
-        * @brief Convert an XML document to a normalised, case-corrected array
+        * Convert an XML document to a normalised, case-corrected array
         *   used by webfinger
         *
         * @param object  $xml_element     The XML document
@@ -223,7 +223,7 @@ class XML
        }
 
        /**
-        * @brief Convert the given XML text to an array in the XML structure.
+        * Convert the given XML text to an array in the XML structure.
         *
         * Xml::toArray() will convert the given XML text to an array in the XML structure.
         * Link: http://www.bin-co.com/php/scripts/xml2array/
@@ -401,7 +401,7 @@ class XML
        }
 
        /**
-        * @brief Delete a node in a XML object
+        * Delete a node in a XML object
         *
         * @param \DOMDocument $doc  XML document
         * @param string $node Node name
@@ -471,7 +471,7 @@ class XML
         */
        public static function escape($str)
        {
-               $buffer = htmlentities($str, ENT_QUOTES, 'UTF-8');
+               $buffer = htmlspecialchars($str, ENT_QUOTES, 'UTF-8');
                $buffer = trim($buffer);
 
                return $buffer;
@@ -485,7 +485,7 @@ class XML
         */
        public static function unescape($s)
        {
-               $ret = html_entity_decode($s, ENT_QUOTES);
+               $ret = htmlspecialchars_decode($s, ENT_QUOTES);
                return $ret;
        }