How can we do multiple process in php without using pcntl_fork()?
I google many times but found nothing usefull. My server doesn’t support pcntl_fork().
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you have php cli available you can use exec() or system() to fork processes. But sometimes a more elegant way is to make http subrequests in background and use the original url target only as controlling instance.