发布于 2022-05-18 01:58:36 浏览 396 次
<?php
$str = "Bill & 'Steve'";
echo html_entity_decode($str, ENT_COMPAT); // 只转换双引号
echo html_entity_decode($str, ENT_QUOTES); // 转换双引号和单引号
echo html_entity_decode($str, ENT_NOQUOTES); // 不转换任何引号
?>
<?php
$str = "Bill & 'Steve'";
echo htmlentities($str, ENT_COMPAT); // 只转换双引号
echo htmlentities($str, ENT_QUOTES); // 转换双引号和单引号
echo htmlentities($str, ENT_NOQUOTES); // 不转换任何引号
?>