Multithreading

Multithreading refers to the ability of a PHP application to execute multiple threads, smaller units of a process, within the same process, allowing for concurrent execution of code. However, PHP traditionally does not support true multithreading due to its single-threaded, request-response model.

Documentation

See also Multithreading in PHP: Looking to the Future.

Related : Asynchronous, Thread