if the client uses socket_read, will the client disconnect from the server because the server does not send messages for a long time?
what should I do if there is a disconnection? (server-side code cannot be modified at this time)
while (1){
$response = socket_read($socket,1024);
//.....
}