标签: php python python-multithreading
PHP中的Threading模块是否与PHP等效?我在Python中的代码看起来像
from Treading import thread def somefunction(): print("function") t = Thread(target = somefunction) t.start()
有没有办法将这样的代码转换为PHP,如果有的话,怎么样? 感谢。
答案 0 :(得分:0)
有。 PHP有pthreads。至于使用它来转换Python代码的相似程度或容易程度,还不清楚。
pthreads