解决set_magic_quotes_runtime() is deprecated

2026-04-02 05:20:29

今天在使用phpmailer的时候使用到添加附件的功能,最后报错。提示的错误为如图所示“Deprecated: Function set_magic_quotes_runtime() is deprecated in xxx on line xxx”。发现原来是这个函数(set_magic_quotes_runtime())在php5.3以后就被弃用了。

解决set_magic_quotes_runtime() is deprecated

官方网站有所有5.3以后弃用的函数:

http://www.php.net/manual/zh/migration53.deprecated.php

由于官方也没提供替代的函数,所以找到地方,直接注释就OK了。

解决set_magic_quotes_runtime() is deprecated

也可以使用if(version_compare(PHP_VERSION, '5.3.0', '<')){xxx}这样的判断。

猜你喜欢