diff --git a/reference/strings/functions/htmlspecialchars.xml b/reference/strings/functions/htmlspecialchars.xml index 4bd6fca8e7..46aeb72a51 100644 --- a/reference/strings/functions/htmlspecialchars.xml +++ b/reference/strings/functions/htmlspecialchars.xml @@ -34,8 +34,8 @@ You may have to use mb_encode_numericentity instead. - The translations performed are: - + + Performed translations @@ -45,33 +45,33 @@ - '&' (ampersand) - '&amp;' + & (ampersand) + &amp; - '"' (double quote) - '&quot;' when ENT_NOQUOTES + " (double quote) + &quot; when ENT_NOQUOTES - "'" (single quote) + ' (single quote) - '&#039;' (for ENT_HTML401) or &apos; (for + &#039; (for ENT_HTML401) or &apos; (for ENT_XML1, ENT_XHTML or ENT_HTML5), but only when ENT_QUOTES is set - '<' (less than) - '&lt;' + < (less than) + &lt; - '>' (greater than) - '&gt;' + > (greater than) + &gt; - +