正确的方法来逃避包含PHP变量的HTML字符串中的引号
发布时间:2020-12-13 17:00:00 所属栏目:PHP教程 来源:网络整理
导读:我正在编写一串需要接收一些 PHP变量的HTML.但是,我似乎无法正确地逃避双引号. 尝试1: $html .= 'span class="badge"a href="#" style="color:orange"span class="glyphicon glyphicon-arrow-up" aria-hidden="true" onclick="sendToProduction(''.$config
我正在编写一串需要接收一些
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 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |