当前位置:Gxlcms > PHP教程 > phpset_magic_quotes_runtime()函数过时解决办法

phpset_magic_quotes_runtime()函数过时解决办法

时间:2021-07-01 10:21:17 帮助过:14人阅读

php set_magic_quotes_runtime() 函数过时解决方法
tags标签: set_magic_quotes_runtime 
PHP5.3中 bool set_magic_quotes_runtime ( bool $new_setting )函数过时.
把函数: 

set_magic_quotes_runtime($new_setting); 

替换成: 
ini_set(\"magic_quotes_runtime\", $new_setting);

人气教程排行