Threaded::extend

(PECL pthreads >= 2.0.8)

Threaded::extendRuntime Manipulation

說明

public Threaded::extend(string $class): bool

Makes thread safe standard class at runtime

參數(shù)

class

The class to extend

返回值

成功時返回 true, 或者在失敗時返回 false。

范例

示例 #1 Runtime inheritance

<?php
class My {}

Threaded::extend(My::class);

$my = new My();

var_dump($my instanceof Threaded);
?>

以上例程會輸出:

bool(true)