当前位置: 移动技术网 > IT编程>开发语言>PHP > PHP中输出转义JavaScript代码的实现代码

PHP中输出转义JavaScript代码的实现代码

2019年04月23日  | 移动技术网IT编程  | 我要评论
分享一下:
复制代码 代码如下:

function jsformat($str)
{
$str = trim($str);
$str = str_replace('\\s\\s', '\\s', $str);
$str = str_replace(chr(10), '', $str);
$str = str_replace(chr(13), '', $str);
$str = str_replace(' ', '', $str);
$str = str_replace('\\', '\\\\', $str);
$str = str_replace('"', '\\"', $str);
$str = str_replace('\\\'', '\\\\\'', $str);
$str = str_replace("'", "\'", $str);
return $str;
}

使用就不用说了,就是直接调用jsformat($str)

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网