多语言展示
当前在线:932今日阅读:126今日分享:42

解决set_magic_quotes_runtime() is deprecated

今天在使用phpmailer的时候使用到添加附件的功能,最后报错。提示的错误为如图所示“Deprecated: Function set_magic_quotes_runtime() is deprecated in xxx on line xxx”。发现原来是这个函数(set_magic_quotes_runtime())在php5.3以后就被弃用了。官方网站有所有5.3以后弃用的函数:http://www.php.net/manual/zh/migration53.deprecated.php由于官方也没提供替代的函数,所以找到地方,直接注释就OK了。也可以使用if(version_compare(PHP_VERSION,'5.3.0','<')){xxx}这样的判断。
推荐信息