PHP Mail_Queue PEAR 库中的错误

发布于 2024-09-18 05:00:32 字数 215 浏览 4 评论 0原文

尝试使用 PHP Mail_Queue PEAR 库时出现以下错误:

Mail_Queue::isError() 的声明应与 PEAR 的声明兼容: :isError()

PHP 5.2.3,邮件队列版本 1.2.3

在 Google 上搜索没有找到任何结果。有什么想法造成这种情况吗?

I'm getting the following error when trying to use the PHP Mail_Queue PEAR library:

Declaration of Mail_Queue::isError() should be compatible with that of PEAR::isError()

PHP 5.2.3, Mail Queue Version 1.2.3

Searching on Google hasn't turned up anything. Any ideas what's causing this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡淡離愁欲言轉身 2024-09-25 05:00:33

当然太晚了,但我通过修改 Mail/Queue.php 文件解决了这个问题
Mail_Queue::isError 的声明应与 PEAR::isError 中提供的声明完全匹配,该声明采用两个参数。

因此,更改(版本 1.2.6 的第 584 行):

function isError($value)

至 :

function isError($value, $dummy = "")

解决警告。
它不是 100% 令人满意,因为此修改将在下次更新时消失,但它拯救了我的一天(0% 错误和警告)

Surely too late but I resolved this issue by modifying the Mail/Queue.php file
The declaration of Mail_Queue::isError should match exactly the one provided in PEAR::isError which takes two arguments.

So, changing (line 584 for release 1.2.6) :

function isError($value)

To :

function isError($value, $dummy = "")

Solves the warning.
It is not 100% satisfying because this modification will disappear while next update but it saved my day (0% error & warning)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文