Is it possible for one PHP file to send a “message” to certain users in another PHP file?
Note that the “message” should be able to receive a PHP file that is already running, so simply accessing other files does not matter. The image below shows what I want to do:

In this example, user 1 calls "send.php", which subsequently sends a message to the "receive.php" instances of users 1,2 and 4. Is this possible?
Additional Information
I can not register messages in a central place, for example, in a file or database, because in the end I get requests for messages approximately every 100 Moscow time, which is likely to overload the database / file system. I need it to be instant.
In addition, I cannot use sessions or cookies because, as mentioned, the message needs to be sent to multiple users. Finally, the resulting PHP file does not end until the user leaves the page (this is really an HTML5 eventsource file).
source share