使用php转义输出HTML到JavaScript

前端之家收集整理的这篇文章主要介绍了使用php转义输出HTML到JavaScript前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近在做天地图是GIS集成··要输出HTML到JavaScript里面··涉及到代码转义什么的比较麻烦··所以写个PHP的function

分享一下:

PHP;"> 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有所帮助

请您花一点时间将文章分享给您的朋友或者留下评论。我们将会由衷感谢您的支持

原文链接:https://www.f2er.com/php/22261.html

猜你在找的PHP相关文章