(PECL uopz 1, PECL uopz 2, PECL uopz 5)
uopz_implement — Implements an interface at runtime
$class
   , string $interface
   )
 Makes class implement interface
  
class
interface
   Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.
  
Beispiel #1 uopz_implement() example
<?php
interface myInterface {}
class myClass {}
uopz_implement(myClass::class, myInterface::class);
var_dump(class_implements(myClass::class));
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
array(1) {
  ["myInterface"]=>
  string(11) "myInterface"
}