微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

函数set_magic_quotes_runtime()在phpmailer中已弃用

帮助我,我想用PHP Mailer 5.1版嵌入一个图像..我的PHP版本是5.4.7

脚本执行是成功的,我可以接收带有嵌入式图像的电子邮件,但问题是警告显示如下:

Deprecated: Function set_magic_quotes_runtime() is deprecated in C:\xampp\htdocs\form\class.PHPmailer.PHP on line 1480

Deprecated: Function set_magic_quotes_runtime() is deprecated in C:\xampp\htdocs\form\class.PHPmailer.PHP on line 1484

我的剧本是

$mail->AddEmbeddedImage('filename', 'cid', 'name');
$mail->AddEmbeddedImage('sgu_logo.gif', 'my-pics', 'sgu_logo.gif');

$mail->Body     =  "Thank you for registering at SGU. For further processing please complete a registration fee before &nbsp; ". $e['testschedule']." <br> For future information please contact us at sgu.ac.id/support <br><br> 
<img src='cid:sgu_logo.gif' alt='my-pics' />.";

解决方法:

将这些代码添加到脚本的顶部

@set_magic_quotes_runtime(false);
ini_set('magic_quotes_runtime', 0);

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐