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

php5.3提示Function ereg() is deprecated Error問題

編輯:關於PHP編程

       PHP 5.3 ereg() 無法正常使用,提示“Function ereg() is deprecated Error”。

      問題根源是php中有兩種正則表示方法,一個是posix,一個是perl,php6打算廢除posix的正則表示方法所以後來就加了個preg_match。此問題解決辦法很簡單,在ereg前加個過濾提示信息符號即可:把ereg()變成@ereg()。這樣屏蔽了提示信息,但根本問題還是沒有解決,php在5.2版本以前ereg都使用正常,在5.3以後,就要用preg_match來代替ereg。所以就需要變成這樣,

      原來:ereg("^[0-9]*$",$page)變成:preg_match("/^[0-9]*$/",$page)

      特別提醒:posix與perl的很明顯的表達區別就是是否加斜槓,所以與ereg相比,後者在正則的前後分別增加了兩個"/"符號,不能缺少。

      例

      改前: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); // 進行過濾

      }

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

      Tips:此問題在php5.2之前版本不會出現。

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