Heim  >  Artikel  >  Backend-Entwicklung  >  转义 javascript 代码标记 函数

转义 javascript 代码标记 函数

WBOY
WBOYOriginal
2016-07-25 09:08:331414Durchsuche
来自PHPCMS
  1. /**
  2. * 转义 javascript 代码标记
  3. *
  4. * @param $str
  5. * @return mixed
  6. */
  7. function trim_script($str) {
  8. if(is_array($str)){
  9. foreach ($str as $key => $val){
  10. $str[$key] = trim_script($val);
  11. }
  12. }else{
  13. $str = preg_replace ( '/\]*?)\>/si', '<\\1script\\2>', $str );
  14. $str = preg_replace ( '/\]*?)\>/si', '<\\1iframe\\2>', $str );
  15. $str = preg_replace ( '/\]*?)\>/si', '<\\1frame\\2>', $str );
  16. $str = preg_replace ( '/]]\>/si', ']] >', $str );
  17. }
  18. return $str;
  19. }
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn