(PECL uopz 1, PECL uopz 2, PECL uopz 5)
uopz_implement — Implements an interface at runtime
$class
, string $interface
) : bool
Makes class
implement interface
class
interface
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
Example #1 uopz_implement() example
<?php
interface myInterface {}
class myClass {}
uopz_implement(myClass::class, myInterface::class);
var_dump(class_implements(myClass::class));
?>
以上例程会输出:
array(1) { ["myInterface"]=> string(11) "myInterface" }