(PECL pthreads >= 2.0.8)
Threaded::extend — Runtime Manipulation
class
The class to extend
Приклад #1 Runtime inheritance
<?php
class My {}
Threaded::extend(My::class);
$my = new My();
var_dump($my instanceof Threaded);
?>
Поданий вище приклад виведе:
bool(true)