您好,欢迎访问一九零五行业门户网

php 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);
其它类似信息

推荐信息