PHP htmlspecialchars() function
Example
Convert predefined characters "<" (less than) and ">" (greater than) to HTML entities:
<?php $str = "This is some <b>bold</b> text."; echo htmlspecialchars($str); ?>
The HTML output of the above code is as follows (view source code):
<!DOCTYPE html> <html> <body> This is some <b>bold</b> text. </body> </html>
Browser Output of the Above Code:
This is some <b>bold</b> text.
Definition and Usage
The htmlspecialchars() function converts predefined characters to HTML entities.
The predefined characters are:
- & (ampersand) becomes &
- " (double quote) becomes "
- ' (single quote) becomes '
- < (less than) becomes <
- > (greater than) becomes >
Tip:To convert special HTML entities back to characters, use htmlspecialchars_decode() Function.
Syntax
htmlspecialchars(string,flags,character-set,double_encode)
Parameter | Description |
---|---|
string | Required. Specifies the string to be converted. |
flags |
Optional. Specifies how to handle quotes, invalid encoding, and which document type to use. Available quote types:
Invalid encoding:
Additional flags for specifying the document type used:
|
character-set |
Optional. A string that specifies the character set to use. Allowed values:
Note:In versions of PHP before 5.4, unrecognized character sets will be ignored and replaced by ISO-8859-1. Starting from PHP 5.4, unrecognized character sets will be ignored and replaced by UTF-8. |
double_encode |
Optional. A boolean value that specifies whether to encode existing HTML entities.
|
Technical details
Return value: |
Returns the converted string. If string If the string contains invalid encoding, an empty string will be returned unless ENT_IGNORE or ENT_SUBSTITUTE flags are set. |
PHP version: | 4+ |
Update log: |
In PHP 5,character-set The default value of the parameter was changed to UTF-8. In PHP 5.4, the following were added: ENT_SUBSTITUTE, ENT_DISALLOWED, ENT_HTML401, ENT_HTML5, ENT_XML1, and ENT_XHTML. In PHP 5.3, ENT_IGNORE was added. In PHP 5.2.3, a new feature was added: double_encode Parameters. In PHP 4.1, a new feature was added: character-set Parameters. |
More Examples
Example 1
Convert some predefined characters to HTML entities:
<?php $str = "Bill & 'Steve'"; echo htmlspecialchars($str, ENT_COMPAT); // Only convert double quotes echo "<br>"; echo htmlspecialchars($str, ENT_QUOTES); // Convert double quotes and single quotes echo "<br>"; echo htmlspecialchars($str, ENT_NOQUOTES); // Do not convert any quotes ?>
The HTML output of the above code is as follows (view source code):
<!DOCTYPE html> <html> <body> Bill & 'Steve'<br> Bill & 'Steve'<br> Bill & 'Steve' </body> </html>
Browser Output of the Above Code:
Bill & 'Steve' Bill & 'Steve' Bill & 'Steve'
Example 2
Convert double quotes to HTML entities:
<?php $str = 'I love "PHP".'; echo htmlspecialchars($str, ENT_QUOTES); // Convert double quotes and single quotes ?>
The HTML output of the above code is as follows (view source code):
<!DOCTYPE html> <html> <body> I love "PHP" </body> </html>
Browser Output of the Above Code:
I love "PHP".