htmlspecialchars函数是PHP中用于转义特殊字符的函数,它将一些特殊字符转换为HTML实体,从而避免在HTML文档中出现错误或安全漏洞。
htmlspecialchars函数的用法如下:
htmlspecialchars(string $string, int $flags = ENT_COMPAT | ENT_HTML401, string|null $encoding = null, bool $double_encode = true): string
参数说明:
返回值:
示例用法:
$text = 'This is a "test" string.';
echo htmlspecialchars($text);
// 输出:This is a "test" string.
$text2 = "This is a 'test' string.";
echo htmlspecialchars($text2, ENT_QUOTES);
// 输出:This is a 'test' string.
注意事项: