关于 pthreads 版本 3 的 Thread class Pthreads::kill() 的替代项是什么
What's alternate for Pthreads::kill() about Thread class of pthreads version 3
kill()
方法已从 PECL pthreads 库版本 3 中删除。
查看存档手册:
https://web.archive.org/web/20210410123359/https://www.php.net/manual/en/thread.kill.php
Warning: This method has been removed in pthreads v3.
Warning: The programmer should not ordinarily kill Threads by force.
所以你可以看到在新版本中删除了:
https://www.php.net/manual/en/class.thread.php
现在可以选择什么来终止或终止 class 中以线程 class 启动的进程?
kill()
方法已从 PECL pthreads 库版本 3 中删除。
查看存档手册: https://web.archive.org/web/20210410123359/https://www.php.net/manual/en/thread.kill.php
Warning: This method has been removed in pthreads v3.
Warning: The programmer should not ordinarily kill Threads by force.
所以你可以看到在新版本中删除了: https://www.php.net/manual/en/class.thread.php
现在可以选择什么来终止或终止 class 中以线程 class 启动的进程?