我很困惑Threaded
php扩展中pthreads和Stackable
这两个类之间的区别是什么。
php手册页没有提到Stackable
,但是它存在,许多关于pthreads的文本都提到了这个类;例如:
Recycling Contexts
Multi-Threading in PHP with pthreads
Easy pthreads Pools
对get_class_methods()
的调用表明这两个类实现相同的方法,并且get_parent_class()
对这两个类都返回FALSE
。
目前我假设Stackable
是Threaded
的别名。是这样吗?
最佳答案
$stackable = new Stackable;
var_dump(get_class($stackable));
输出:字符串(8)“线程”
我的假设似乎是正确的。
关于php - PHP pthreads:Threaded和Stackable之间的区别,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31189295/