2013-03-19 41 views
-3

您好即時得到這個誤差錯誤與已過時

推薦使用:功能ereg_replace()在/home/hj016/public_html/SSTW/index.php被棄用第10行

下面

是代碼

// Determine which page ID to use in our query below --------------------------------------------------------------------------------------- 
if (!isset($_GET['pid'])) { 
    $pageid = '1'; 
} else { 
    $pageid = ereg_replace("[^0-9]", "", $_GET['pid']); // filter everything but numbers for security 
} 
+0

的preg_replace ... – raina77ow 2013-03-19 23:14:28

+2

你有沒有用Google搜索你的錯誤味精? – jtheman 2013-03-19 23:14:38

回答

0

使用的preg_replace來代替:http://www.php.net/preg_replace

ereg_ *職能不應再使用。

使用此:

$string = preg_replace ('|\D|', '', $string); 
相關問題