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.
注意事項: