正确的方法来逃避包含PHP变量的HTML字符串中的引号

我正在编写一串需要接收一些PHP变量的HTML.但是,我似乎无法正确地逃避双引号.

尝试1:

$html .= '<span class="badge"><a href="#" style="color:orange"><span class="glyphicon glyphicon-arrow-up" aria-hidden="true" onclick="sendToProduction(\''.$configType.'\')"></span></a></span>';

结果:

<span class="glyphicon glyphicon-arrow-up" aria-hidden="true" onclick="sendToProduction(\' project\')"=""></span>

尝试2:

$html .= '<span class="badge"><a href="#" style="color:orange"><span class="glyphicon glyphicon-arrow-up" aria-hidden="true" onclick="sendToProduction('.'$configType'.')"></span></a></span>';

结果:

<span class="glyphicon glyphicon-arrow-up" aria-hidden="true" onclick="sendToProduction(project)"></span>

关闭,但应该是’项目’.

期望的结果:

<span class="glyphicon glyphicon-arrow-up" aria-hidden="true" onclick="sendToProduction('project')"></span>

解决方法:

在这里,你只需要先尝试一步,你只需要从单个引号中移出双引号.

$html .= '<span class="badge"><a href="#" style="color:orange"><span class="glyphicon glyphicon-arrow-up" aria-hidden="true" onclick="sendToProduction("'.$configType.'")"></span></a></span>';

Here you can see a live sample

上一篇:php – symfony 1.4解释并且不会在模板中使用fetchOne()显示html标签


下一篇:如何在php中为每个数据库扩展转义字符串?