(PECL uopz >= 1.0.0)
uopz_implement — 実行時にインターフェイスを実装
$class
, string $interface
)
class
にinterface
を実装させます。
class
interface
例1 uopz_implement() の例
<?php
interface myInterface {}
class myClass {}
uopz_implement(myClass::class, myInterface::class);
var_dump(class_implements(myClass::class));
?>
上の例の出力は、 たとえば以下のようになります。
array(1) { ["myInterface"]=> string(11) "myInterface" }