Threaded::extend
(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)
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。