如何杀死从终端mac osx使用线程的php进程

时间:2015-05-28 11:29:21

标签: php macos terminal pthreads

我在终端

中运行了php脚本
  

php test.php

我总是通过'ctrl + c'或

来杀死脚本的执行
  

杀死pid

但是现在这个脚本没有杀死。我认为这是因为我在我的脚本中使用线程

有谁知道如何停止执行脚本?

UPD php脚本的代码

class TestThread extends Thread {

    public function __construct() {

    }

    public function run() {
        while(true) {
            // Do something
            sleep(5);
        }
    }
}

$thread = new TestThread();
$thread->start();

0 个答案:

没有答案