运维网's Archiver
论坛
›
php
› php set_magic_quotes_runtime() 函数过时解决方法
zhuyumu
发表于 2017-4-12 07:04:46
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);
页:
[1]
查看完整版本:
php set_magic_quotes_runtime() 函数过时解决方法