PHP Conference Kansai 2025

msg_send

(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)

msg_sendEnvia uma mensagem para uma fila de mensagens

Descrição

msg_send(
    SysvMessageQueue $queue,
    int $message_type,
    string|int|float|bool $message,
    bool $serialize = true,
    bool $blocking = true,
    int &$error_code = null
): bool

msg_send() envia a mensagem message do tipo message_type (que PRECISA ser maior que 0) para a fila de mensagens especificada por queue.

Parâmetros

queue

A fila de mensagens.

message_type

O tipo da mensagem (PRECISA ser maior que 0).

message

O corpo da mensagem.

Nota:

Se serialize definido como false for fornecido, PRECISA ser do tipo: string, int, float ou bool. Caso contrário, um aviso será emitido.

serialize

O parâmetro opcional serialize controla como a mensagem do parâmetro message é enviada. serialize tem como padrão true, o que significa que a mensagem em message é serializada usando o mesmo mecanismo do módulo de sessão antes de ser enviada para a fila. Isso permite que arrays e objetos complexos sejam enviados para outros scripts PHP ou, se estiver sendo usado o serializador WDDX, para qualquer cliente compatível com WDDX.

blocking

Se a mensagem for muito grande para caber na fila, o script aguardará até que outro processo leia as mensagens da fila e libere espaço suficiente para que a mensagem seja enviada. Isso é chamado de bloqueio; pode-se evitar o bloqueio definindo o parâmetro opcional blocking como false, nesse caso, msg_send() retornará imediatamente false se a mensagem for muito grande para a fila, e definirá o error_code opcional como MSG_EAGAIN, indicando que deve-se tentar enviar a mensagem novamente um pouco mais tarde.

error_code

Se a função falhar, o código de erro opcional será definido como o valor da variável errno do sistema.

Valor Retornado

Retorna true em caso de sucesso ou false em caso de falha.

Após a conclusão bem-sucedida, a estrutura de dados da fila de mensagens é atualizada da seguinte forma: msg_lspid é definido como o ID do processo do processo chamador, msg_qnum é incrementado em 1 e msg_stime é definido como a hora atual.

Registro de Alterações

Versão Descrição
8.0.0 queue espera uma instância de SysvMessageQueue agora; anteriormente, um resource era esperado.

Veja Também

adicione uma nota

Notas Enviadas por Usuários (em inglês) 3 notes

up
5
qeekin at gmail dot com
11 years ago
I created example how to comunnicate with programe written in C throught messages queues. First run C program (it will create queue) then PHP script.

C code compile with: gcc -std=c99 -o test_queue test_queue.c

test_queue.c:
/**
* Example how to use System V Messages Queues with PHP and C program.
* This is simple server which create message queue and receive message from it.
* Based on Beej's Guide to Unix IPC
* Autor: Jan Drazil, <qeekin at gmail dot com>
*/

#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>

/* Buffer struct for receiving messages */
struct php_buf {
long mtype;
char msg[200];
};

int main(void)
{
struct php_buf buf;
int msqid;
key_t key;

/* Generate key (/var/www/index.php must be accessible file) */
if((key = ftok("/var/www/index.php", 'G')) == -1) {
perror("ftok");
exit(EXIT_FAILURE);
}

/* Create message queue */
if((msqid = msgget(key, 0666 | IPC_CREAT)) == -1) {
perror("msgget");
exit(EXIT_FAILURE);
}

printf("Ready to get string from PHP!\n");

/* Receive message */
if(msgrcv(msqid, &buf, sizeof(buf.msg)-1, 0, 0) == -1) {
perror("msgrcv");
exit(EXIT_FAILURE);
}

/* Eliminate segmentation fault */
buf.msg[199] = '\0';

printf("Recieved from PHP: %s\n", buf.msg);

/* Destroy message queue */
if(msgctl(msqid, IPC_RMID, NULL) == -1) {
perror("msgctl");
exit(EXIT_FAILURE);
}

return EXIT_SUCCESS;
}

test_queue.php:
<?php
/**
* Example how to use System V Messages Queues with PHP and C program.
* This is simple server which create message queue and receive message from it.
* Based on Beej's Guide to Unix IPC
* Autor: Jan Drazil, <qeekin at gmail dot com>
*/

/* Generate key, param fot ftok must be same as in test_msg.c */
if(($key = ftok("/var/www/index.php", "G")) == -1)
die(
"ftok");

if(!
msg_queue_exists($key))
die(
"message queue doesn't exists");

/* Connect to message queue */
if(($msqid = msg_get_queue($key)) === FALSE)
die(
"msg_get_queue");

echo
"Sending text to msg queue.\n";

/* Send message to C program */
if(!msg_send($msqid, 12, "Hello from PHP!\0", false))
die(
"msg_send");

echo
"Done"
?>
up
4
Muffinman
12 years ago
When sending non-complex (serialize = false) messages to a program in C, you need to add the null character to the string (\0). Otherwise the previous message will be partially visible if it is longer than the current message. Took some kind help from comp.lang.php for me to figure that out. While it seems so obvious now, I thought I'd share it here.
up
1
michael dot NO dot SP dot AM dot cordover+php at gmail dot com
15 years ago
After about an hour of debugging I've discovered the meaning of the undocumented "PHP Warning: msg_send(): msgsnd failed: Invalid argument" ($errorcode = 13).

This occurred when the size of $message was larger than msg_qbytes (see msg_stat_queue() for how to determine and change msg_qbytes).
To Top