htmlspecialcharsBack
string htmlspecialcharsBack( string text );
The function converts text from HTML safe format to the human-readable form, performing the following substitutions:
Original symbols | After replacement |
---|---|
< | < |
> | > |
" | " |
& | & |
Function parameters
Parameter | Description |
---|---|
text | Text to be converted. |
See Also
Examples of use
<? $text = '"если a>b и b>c, то a>c"' $res = htmlspecialcharsBack($str); // $res now contains: // "if a>b and b>c, then a>c" ?>
© «Bitrix24», 2001-2024