Categories: PHP编程语言

Deprecated: Function set_magic_quotes_runtime() is deprecated in 的提示的解决!

Deprecated: Function set_magic_quotes_runtime() is deprecated in E:

\wwwroot\ecity.chengdu.cn\include\common.inc.php on line 39

Warning

自 PHP 5.3.0 起,已经废弃此函数。强烈建议不要应用此函数 。

原因在于此了!

解决方案便是:

//set_magic_quotes_runtime(FALSE); //禁止对外部资源输入实行转义
ini_set(“magic_quotes_runtime”,”0″);

magic_quotes_runtime     “0”     PHP_INI_ALL     在 PHP 5.4.0 中移除该选项。

因此只能够在5.3的版本中使用此解决方案了的!

Deprecated: Function set_magic_quotes_runtime() is deprecated in

永夜