Python中的Threading模块是否等效于PHP

时间:2015-11-20 12:01:47

标签: php python python-multithreading

PHP中的Threading模块是否与PHP等效?我在Python中的代码看起来像

from Treading import thread

def somefunction():
    print("function")

t = Thread(target = somefunction)        
t.start()

有没有办法将这样的代码转换为PHP,如果有的话,怎么样? 感谢。

1 个答案:

答案 0 :(得分:0)

有。 PHP有pthreads。至于使用它来转换Python代码的相似程度或容易程度,还不清楚。