Heim >Backend-Entwicklung >PHP-Tutorial >有没有可能在 PHP 中实现多线程?

有没有可能在 PHP 中实现多线程?

WBOY
WBOYOriginal
2016-06-06 20:42:56893Durchsuche

假设正在写一个基于多台服务器的 PHP 应用,理想的情况是同时向多台服务器发送请求,而不是一台接一台。可以实现吗?

回复内容:

假设正在写一个基于多台服务器的 PHP 应用,理想的情况是同时向多台服务器发送请求,而不是一台接一台。可以实现吗?

用 pthreads 可以实现,官方文档:http://php.net/manual/zh/book.pthreads.php

同时向多台服务器发送请求不用多线程 多进程哈,直接使用php提供的IO复用函数就好
比如:http://php.net/manual/en/function.stream-select.php

如果是向多个服务器发送http请求,直接用culr_multi*实现,其实也是IO复用实现的。
比如:http://php.net/manual/en/function.curl-multi-exec.php里面的例子

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn