解决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}这样的判断。
阅读量:95
阅读量:159
阅读量:48
阅读量:101
阅读量:70