使用php转义输出HTML到JavaScript
使用php转义输出HTML到JavaScript
本文给大家分享的是个人项目中的一个小需求,需要使用php转义输出HTML到JavaScript,就写了个function,推荐给大家,希望大家能够喜欢。
最近在做天地图是GIS集成··要输出HTML到JavaScript里面··涉及到代码转义什么的比较麻烦··所以写个PHP的function
分享一下:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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有所帮助
上一篇: Android 实现跑马灯效果
下一篇: IE的不合理设计和Bugs_基础知识
推荐阅读
-
使用Ajax异步上传图片的方法(html,javascript,php)
-
WordPress中转义HTML与过滤链接的相关PHP函数使用解析
-
PHP中输出转义JavaScript代码的实现代码
-
使用php转义输出HTML到JavaScript,转义javascript
-
使用php转义输出HTML到JavaScript
-
PHP中输出转义JavaScript代码的实现代码_php技巧
-
当把php资料作为javascript使用时,chrome却将文件内容解释为html
-
PHP中输出转义JavaScript代码的实现代码
-
php输出html时转义,该怎么处理
-
WordPress中转义HTML与过滤链接的相关PHP函数使用解析,