php set_magic_quotes_runtime() 函数过时解决方法
更新时间:2010年07月08日 02:54:41 作者:
PHP5.3中 bool set_magic_quotes_runtime ( bool $new_setting )函数过时.
把函数:
set_magic_quotes_runtime($new_setting);
替换成:
ini_set("magic_quotes_runtime", $new_setting);
set_magic_quotes_runtime($new_setting);
替换成:
ini_set("magic_quotes_runtime", $new_setting);
相关文章
真正根据utf8编码的规律来进行截取字符串的函数(utf8版sub_str )
真正根据utf8编码的规律来进行截取的字符的函数,utf8版sub_str 支持1~6个字节的字符的截取,而非只针对中文,比网上的全2012-10-10
最新评论