msg_receive
(PHP 4 >= 4.3.0, PHP 5, PHP 7)
msg_receive — Receive a message from a message queue
Beschreibung
$queue
, int $desiredmsgtype
, int &$msgtype
, int $maxsize
, mixed &$message
[, bool $unserialize
= TRUE
[, int $flags
= 0
[, int &$errorcode
]]] ) : bool
msg_receive() will receive the first message from the
specified queue
of the type specified by
desiredmsgtype
.
Parameter-Liste
-
queue
-
Message queue resource handle
-
desiredmsgtype
-
If
desiredmsgtype
is 0, the message from the front of the queue is returned. Ifdesiredmsgtype
is greater than 0, then the first message of that type is returned. Ifdesiredmsgtype
is less than 0, the first message on the queue with a type less than or equal to the absolute value ofdesiredmsgtype
will be read. If no messages match the criteria, your script will wait until a suitable message arrives on the queue. You can prevent the script from blocking by specifyingMSG_IPC_NOWAIT
in theflags
parameter. -
msgtype
-
The type of the message that was received will be stored in this parameter.
-
maxsize
-
The maximum size of message to be accepted is specified by the
maxsize
; if the message in the queue is larger than this size the function will fail (unless you setflags
as described below). -
message
-
The received message will be stored in
message
, unless there were errors receiving the message. -
unserialize
-
If set to
TRUE
, the message is treated as though it was serialized using the same mechanism as the session module. The message will be unserialized and then returned to your script. This allows you to easily receive arrays or complex object structures from other PHP scripts, or if you are using the WDDX serializer, from any WDDX compatible source.If
unserialize
isFALSE
, the message will be returned as a binary-safe string. -
flags
-
The optional
flags
allows you to pass flags to the low-level msgrcv system call. It defaults to 0, but you may specify one or more of the following values (by adding or ORing them together).Flag values for msg_receive MSG_IPC_NOWAIT
If there are no messages of the desiredmsgtype
, return immediately and do not wait. The function will fail and return an integer value corresponding toMSG_ENOMSG
.MSG_EXCEPT
Using this flag in combination with a desiredmsgtype
greater than 0 will cause the function to receive the first message that is not equal todesiredmsgtype
.MSG_NOERROR
If the message is longer than maxsize
, setting this flag will truncate the message tomaxsize
and will not signal an error. -
errorcode
-
If the function fails, the optional
errorcode
will be set to the value of the system errno variable.
Rückgabewerte
Gibt bei Erfolg TRUE
zurück. Im Fehlerfall wird FALSE
zurückgegeben.
Upon successful completion the message queue data structure is updated as follows: msg_lrpid is set to the process-ID of the calling process, msg_qnum is decremented by 1 and msg_rtime is set to the current time.
Siehe auch
- msg_remove_queue() - Entfernt eine Message Queue
- msg_send() - Send a message to a message queue
- msg_stat_queue() - Liefert Informationen zu einer Message Queue
- msg_set_queue() - Setzt Metadaten in derMessage Queue Datenstruktur
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 30/01/2003, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/php-rf-function.msg-receive.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.