PHP中输出转义JavaScript代码的实现代码
发布时间:2016-12-29 来源:查字典编辑
摘要:分享一下:复制代码代码如下:functionjsformat($str){$str=trim($str);$str=str_replace(...
分享一下:
复制代码 代码如下:
function jsformat($str)
{
$str = trim($str);
$str = str_replace('ss', '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)