Here's an gist of what I'm attempting
正如您所看到的,它应该在pthreads_thread_entry parent中重载运行,但它没有。
<?php
$test = new Test();
$test->start();
$test->join();
?>
应该打印一个线程ID并睡10秒,但它不打印任何东西(但是var_dump($test->start())
返回bool true)并且它不会睡觉。但是,直接调用$test->run();
会起作用(但可能不在其自己的主题范围内) -
是什么给出的?如何重载Threaded ::在pthread ext内的自定义内部类中运行?