update : 2015.11.03
php.shukuma.com

검색:
 
 
Runtime Manipulation

Threaded::extend

(PECL pthreads >= 2.0.8)

Threaded::extendRuntime Manipulation

설명

public bool Threaded::extend ( string $class )

Makes thread safe standard class at runtime

인수

class

The class to extend

반환값

A boolean indication of success

예제

Example #1 Runtime inheritance

<?php
class My {}

Threaded::extend(My::class);

$my = new My();

var_dump($my instanceof Threaded);
?>

위 예제의 출력:

bool(true)