Amr Eladawy
Amr Eladawy

Reputation: 4358

Multithreading in PHP 7

How to do multithreading in PHP7? The first problem I see with pthread is coming directly from PHP manual.

https://secure.php.net/manual/en/intro.pthreads.php

The pthreads extension cannot be used in a web server environment. Threading in PHP should therefore remain to CLI-based applications only.

Is is safe to oversee this warning, and spawn some threads on HTTP requests?

Upvotes: 3

Views: 1811

Answers (1)

Joe Watkins
Joe Watkins

Reputation: 17148

Is is safe to oversee this warning, and spawn some threads on HTTP requests?

The extension itself prohibits loading anywhere but CLI: Attempting to load in any other SAPI will result in a fatal error.

Upvotes: 3

Related Questions