PHP5.3后(set_magic_quotes_runtime(),ereg() )已经关闭。
[ 2011-03-02 08:38:25 | 作者: admin ]
运行php程序出现以下错误
Deprecated: Function set_magic_quotes_runtime() is deprecated
导致这个提示的原因是在PHP5.3后此特性(set_magic_quotes_runtime())已经关闭。
而且在PHP6中已经完全移除此特性。
你可以注释或者删除掉出错的行,或者是在set_magic_quotes_runtime()前面加@符号。
也可以用替换方法:PHP 5.3 ereg() 无法正常使用,提示“Function ereg() is deprecated Error”。问题根源是php...
阅读全文…
Deprecated: Function set_magic_quotes_runtime() is deprecated
导致这个提示的原因是在PHP5.3后此特性(set_magic_quotes_runtime())已经关闭。
而且在PHP6中已经完全移除此特性。
你可以注释或者删除掉出错的行,或者是在set_magic_quotes_runtime()前面加@符号。
也可以用替换方法:
引用
find:
set_magic_quotes_runtime(0);
replace with:
ini_set("magic_quotes_runtime", 0);
set_magic_quotes_runtime(0);
replace with:
ini_set("magic_quotes_runtime", 0);
阅读全文…
1