时间:2021-07-01 10:21:17 帮助过:9人阅读
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)http://www.bkjia.com/PHPjc/323283.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/323283.htmlTechArticle分享一下: 代码如下:
function jsformat($str) { $str = trim($str); $str = str_replace('\\s\\s', '\\s', $str); $str = str_replace(chr(10), '', $str); $str = str_...