当前位置: 代码迷 >> PHP >> php set_magic_quotes_runtime() 函数过时解决办法
  详细解决方案

php set_magic_quotes_runtime() 函数过时解决办法

热度:444   发布时间:2012-06-26 10:04:13.0
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);
  相关解决方案