当前位置:首页 > PHP教程 > 正则表达式 > 列表

php错误提示:Deprecated: Function eregi() is deprecated

发布:smiling 来源: PHP粉丝网  添加日期:2013-12-04 22:31:13 浏览: 评论:0 

今天在利用一个正则时提示Deprecated: Function eregi() is deprecated in错误了,后来查询了一原因是我们php5.3,在5.3中己经不支持eregi函数了,可以直接使用preg_match来代替。

改前代码如下:

  1. function inject_check($sql_str) { 
  2.  $sql_str = strtolower($sql_str); 
  3.  return eregi('fopen|post|eval|select|insert|and|or|update|delete|'|/*|*|../|./|union|into|load_file|outfile', $sql_str); // 进行过滤  

改后的代码:注意preg_match那一句:

  1. function inject_check($sql_str) {  
  2.  $sql_str = strtolower($sql_str); 
  3.  return preg_match('/fopen|post|eval|select|insert|and|or|update|delete|'|/*|*|../|./|union|into|load_file|outfile/', $sql_str); // 进行过滤  

注意:一定要加'/'开头与结束哦。

Tags: 错误提示 Deprecated: Function

分享到: