|
复制代码 代码如下:
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)
php技术:PHP中输出转义JavaScript代码的实现代码,转载需保留来源!
郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。