Although PHP now has a number of features that allow you to control concurrency, it was designed with the shared-nothing architecture philosophy.
Anything that needed to be shared was intended to be pushed down to a co-ordinated robust database or a network filesystem. All state inside a PHP process was to be short lived and only exist within a single PHP lifecycle, which is also the lifecycle of an HTTP request and response.