php将字符串转为html的方法:可以利用htmlentities()函数来实现。该函数可以把字符转换为HTML实体,函数语法:【htmlentities(string,quotestyle,character-set)】。
htmlentities() 函数把字符转换为 HTML 实体。
(推荐教程:php图文教程)
语法:
htmlentities(string,quotestyle,character-set)
实现代码:
"; echo htmlentities($str, ENT_QUOTES); echo "
"; echo htmlentities($str, ENT_NOQUOTES); ?>
(视频教程推荐:php视频教程)
输出:
John & 'Adams' John & 'Adams' John & 'Adams'
如果在浏览器中查看源代码,会看到这些 HTML:
John & 'Adams'
John & 'Adams'
John & 'Adams'
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!