0

在 PHP 中,我尝试通过 IPC 发送消息,并立即检查消息是否在队列中。这是一个测试代码:

$rQueue = msg_get_queue(12345, 0660);
msg_send($rQueue, 0, "test", FALSE, FALSE);
print_r(msg_stat_queue($rQueue));

它从给定队列中打印出统计信息,表明msg_qnum=0,即队列中没有消息。预期的行为是在队列中看到至少一条消息。问题出在哪里?

4

1 回答 1

1

手册上说:

bool msg_send ( resource $queue , int $msgtype , mixed $message [, bool $serialize = true [, bool $blocking = true [, int &$errorcode ]]] )

msg_send() 将 msgtype 类型的消息(必须大于 0)发送到 queue 指定的消息队列。

因此将第二个参数从 0 更改为 1 即可解决问题。

另请查看error_reporting()函数。当我运行您的代码时,PHP 用警告指示了问题:

PHP 警告:msg_send(): msgsnd failed: Invalid argument

于 2013-10-03T10:59:34.967 回答