在PHP编码/ Adsense中用SingleQuote替换DoubleQuote

时间:2016-10-25 11:20:23

标签: php double-quotes

我使用php脚本来保存我的adsense代码以供显示,如下所示:

$ad_header_1 = "
    <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
    <ins class="adsbygoogle"
         style="display:inline-block;width:320px;height:50px"
         data-ad-client="ca-pub-0000000000000000"
         data-ad-slot="0000000000"></ins>
    <script>
    (adsbygoogle = window.adsbygoogle || []).push({});
    </script>
";

因为此代码具有"个符号,所以我必须使用\来转义它们,但更改SingleQuote的DoubleQuote而不必转义它们是否有效/正确?

2 个答案:

答案 0 :(得分:0)

是的,如果您不依赖于在字符串中评估的任何变量,您可以将外部双引号更改为单引号。

因此,在您的情况下,您可以使用单引号来包装字符串。

答案 1 :(得分:0)

$ad_header_1 = '
    <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
    <ins class="adsbygoogle"
         style="display:inline-block;width:320px;height:50px"
         data-ad-client="ca-pub-0000000000000000"
         data-ad-slot="0000000000"></ins>
    <script>
    (adsbygoogle = window.adsbygoogle || []).push({});
    </script>
';

通过这种方式,您可以使用google adsense脚本