Uopz İşlevleri
PHP Manual

uopz_implement

(PECL uopz >= 1.0.0)

uopz_implementImplements an interface at runtime

Açıklama

void uopz_implement ( string $class , string $interface )

Makes class implement interface

Değiştirgeler

class

interface

Dönen Değerler

Örnekler

Örnek 1 uopz_implement() example

<?php
interface myInterface {}

class 
myClass {}

uopz_implement(myClass::class, myInterface::class);

var_dump(class_implements(myClass::class));
?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

array(1) {
  ["myInterface"]=>
  string(11) "myInterface"
}

Uopz İşlevleri
PHP Manual