what is the purpose of these functions prefixed by "msg_" in PHP?

3

As I mentioned in my previous question about traffic lights , I came across a question regarding #, because when the response author quotes about Semaphores , he references that documentation link where we have several functions in PHP with the prefix msg_ .

I have the small impression that this refers to the message queues , but I wanted to confirm the utility of this in PHP, since the documentation is not very clear about the utilities of the functions.

Could anyone explain, for example, what are the purposes of these functions below?

msg_receive 
msg_remove_queue 
msg_send 
msg_set_queue 
msg_stat_queue
    
asked by anonymous 08.06.2017 / 19:01

1 answer

1

According to the documentation, within the set of specific functions for process control, this function library is intended to provide functionalities for working with System V IPC.

It is possible to manipulate message queues, traffic lights and shared memory through these functions.

Specifically speaking about functions with msg_ prefix, these are functions used to work with message queues, using IPC.

These functions are only available in Linux Operating System.

I made this gist as an example, but I'll post a better example here soon.

    
14.07.2017 / 03:10