msg_send
(PHP 4 >= 4.3.0, PHP 5, PHP 7)
msg_send — Send a message to a message queue
Description
$queue
, int $msgtype
, mixed $message
[, bool $serialize
= TRUE
[, bool $blocking
= TRUE
[, int &$errorcode
]]] ) : bool
msg_send() sends a message
of type
msgtype
(which MUST be greater than 0) to
the message queue specified by queue
.
Parameters
-
queue
-
Message queue resource handle
-
msgtype
-
The type of the message (MUST be greater than 0)
-
message
-
The body of the message.
Note:
If
serialize
set toFALSE
is supplied, MUST be of type: string, integer, float or bool. In other case a warning will be issued. -
serialize
-
The optional
serialize
controls how themessage
is sent.serialize
defaults toTRUE
which means that themessage
is serialized using the same mechanism as the session module before being sent to the queue. This allows complex arrays and objects to be sent to other PHP scripts, or if you are using the WDDX serializer, to any WDDX compatible client. -
blocking
-
If the message is too large to fit in the queue, your script will wait until another process reads messages from the queue and frees enough space for your message to be sent. This is called blocking; you can prevent blocking by setting the optional
blocking
parameter toFALSE
, in which case msg_send() will immediately returnFALSE
if the message is too big for the queue, and set the optionalerrorcode
toMSG_EAGAIN
, indicating that you should try to send your message again a little later on. -
errorcode
-
If the function fails, the optional errorcode will be set to the value of the system errno variable.
Return Values
Returns TRUE
on success or FALSE
on failure.
Upon successful completion the message queue data structure is updated as
follows: msg_lspid
is set to the process-ID of the
calling process, msg_qnum
is incremented by 1 and
msg_stime
is set to the current time.
See Also
- msg_remove_queue() - Destroy a message queue
- msg_receive() - Receive a message from a message queue
- msg_stat_queue() - Returns information from the message queue data structure
- msg_set_queue() - Set information in the message queue data structure
Vertaling niet beschikbaar
De PHP-handleiding is nog niet in het Nederlands vertaald, dus het scherm is in het Engels. Als u wilt, kunt u het ook in het Frans of in het Duits raadplegen.
Als je de moed voelt, kun je je vertaling aanbieden ;-)
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 30/01/2003 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/php-rf-msg-send.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.