熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

PHP防止JS注入正則

2022-06-13   來源: PHP編程 

  例子

代碼如下  

  $a ="/<script[^>]*?>*?</script>/si";
$keyword = preg_replace($a $_POST[searchword]);

  其它方法

代碼如下  

  <?php
$title="<style>ssss{float:right}</style>";
$title = strip_tags($title);
if(preg_match(/<style>(*)</style>|<script>(*)</script>|<img src=(*)>/$title$info)){
$title=$info[];
}else{
$title = $title;
}
echo $title;


From:http://tw.wingwit.com/Article/program/PHP/201311/21191.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.