当前位置 : 主页 > 网络编程 > PHP >

压缩文本便于在js中输出

来源:互联网 收集:自由互联 发布时间:2021-06-28
压缩文本便于在js中输出 function jsFormat($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('\\', '
压缩文本便于在js中输出
function jsFormat($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;
}
网友评论