程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php錯誤提示:Deprecated: Function eregi() is deprecated

php錯誤提示:Deprecated: Function eregi() is deprecated

編輯:關於PHP編程

今天在利用一個正則時提示Deprecated: Function eregi() is deprecated in錯誤了,後來查詢了一原因是我們php5.3,在5.3中己經不支持eregi函數了,可以直接使用preg_match來代替。

改前:function inject_check($sql_str) {

 代碼如下 復制代碼  $sql_str = strtolower($sql_str);
 return eregi('fopen|post|eval|select|insert|and|or|update|delete|'|/*|*|../|./|union|into|load_file|outfile', $sql_str); // 進行過濾
}

解決方法:

找到代碼所在的文件 位置

 代碼如下 復制代碼


function inject_check($sql_str) {
 $sql_str = strtolower($sql_str);
 return preg_match('/fopen|post|eval|select|insert|and|or|update|delete|'|/*|*|../|./|union|into|load_file|outfile/', $sql_str); // 進行過濾
}

注意:一定要加'/'開頭與結束哦。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved