Does PHP have threading?

Technology CommunityCategory: PHPDoes PHP have threading?
VietMX Staff asked 3 years ago

Standard php does not provide any multithreading but there is an (experimental) extension that actually does – pthreads. The next best thing would be to simply have one script execute another via CLI, but that’s a bit rudimentary. Depending on what you are trying to do and how complex it is, this may or may not be an option.