Today I came across the following statement from PHP Manual:
The web server runs only one single-threaded process, so PHP applications will stall if a request is blocked.
After reading and trying to understand the above statement firstly I didn't understand the actual and exact meaning of the term single-threaded process specific to PHP.
Secondly, I didn't understand the second part of this statement as below
so PHP applications will stall if a request is blocked.
I didn't understand what request gets blocked when and how? Which PHP applications get stalled?
So, can someone please explain to me the actual and exact meaning of the above entire statement with specific meaning to PHP and with a suitable example?