PHP5.3中 bool set_magic_quotes_runtime ( bool $new_setting )函数过时.
把函数:set_magic_quotes_runtime($newsetting);
替换成:
ini_set("magic_quotes_runtime", $newsetting);
本文共 208 字,大约阅读时间需要 1 分钟。
PHP5.3中 bool set_magic_quotes_runtime ( bool $new_setting )函数过时.
把函数:set_magic_quotes_runtime($newsetting);
替换成:
ini_set("magic_quotes_runtime", $newsetting);
转载于:https://www.cnblogs.com/afish/p/3964824.html