(PECL pthreads >= 2.0.8)
Runtime Manipulation
public bool Threaded::extend ( string $class )
Makes thread safe standard class at runtime
Parameters:
class
The class to extend
Returns:
A boolean indication of success
Examples:
Runtime inheritance
<?php
class My {}
Threaded::extend(My::class);
$my = new My();
var_dump($my instanceof Threaded);
?>
The above example will output:
bool(true)
Please login to continue.