时间:2021-07-01 10:21:17 帮助过:26人阅读
分享一下:
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转义到javascript有所帮助
请您花一点时间将文章分享给您的朋友或者留下评论。我们将会由衷感谢您的支持!