我知道我可以将所有内容放在一行中并使用\来转义所有引号,但我正-6ren">
gpt4 book ai didi

php 函数回显 javascript 字符串

转载 作者:行者123 更新时间:2023-12-03 23:04:17 26 4
gpt4 key购买 nike

是否有合适的 php 函数来回显 javascript 字符串?
我想让 php 函数回显如下内容:

<!--/* OpenX Interstitial or Floating DHTML Tag v2.8.7 */-->
<script type="text/javascript">// <![CDATA[
//<![CDATA[
var ox_u = 'extremely_long_url_string';
if (document.context) ox_u += '&context=' + escape(document.context);
document.write("<scr"+"ipt type='text/javascript' src='" + ox_u + "'></scr"+"ipt>");
//
// ]]></script>

我知道我可以将所有内容放在一行中并使用\来转义所有引号,但我正在寻找一种更优雅、更有效的解决方案。

最佳答案

使用 heredoc-syntax .

Heredoc text behaves just like a double-quoted string, without the double quotes. This means that quotes in a heredoc do not need to be escaped […].

关于php 函数回显 javascript 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7442785/

26 4 0