嵌套三层引用
我正在尝试创建一个具有三层嵌套引号的 php 变量。如何围绕 "tackEvent"
、"downloads"
、"all"
和 "nofilter"
创建第三个级别代码>?我那里的双引号不起作用。
$outputList .= "<a href=files/".$content_file ." onClick='_gaq.push
(["_trackEvent", "downloads", "all", "nofilter"]);' >" . $content_name .
"</a>";
I am trying to create a php variable that has three levels of nested quotes. How do I make a third level around "tackEvent"
, "downloads"
, "all"
, and "nofilter"
? The double quotes that I have there are not working.
$outputList .= "<a href=files/".$content_file ." onClick='_gaq.push
(["_trackEvent", "downloads", "all", "nofilter"]);' >" . $content_name .
"</a>";
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
来自此处:
转义外引号)
From here:
escaped outer quote)
"
'
\"
"
"
'
\"
"
这是使用 heredoc 语法。
This is using heredoc syntax.
来自手册:
这也适用于双引号中的字符串。
From the manual:
This applies to strings in double quotes as well.