📜  php 解码 html 特殊字符 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:44.909000             🧑  作者: Mango

代码示例1
$str = "This is some bold text.";
echo htmlspecialchars_decode($str);
// out will be like:
// This is some bold text.