uopz_implement

(PECL uopz 1, PECL uopz 2, PECL uopz 5, PECL uopz 6)

uopz_implement実行時にインターフェイスを実装

説明

uopz_implement ( string $class , string $interface ) : bool

classinterface を実装させます。

パラメータ

class

interface

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

例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"
}