无法超载Threaded ::从内部类运行

时间:2017-06-22 18:13:19

标签: php multithreading pthreads php-extension php-pthread

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内的自定义内部类中运行?

0 个答案:

没有答案