uopz_implement

(PECL uopz >= 1.0.0)

uopz_implementImplements an interface at runtime

Опис

void uopz_implement ( string $class , string $interface )

Makes class implement interface

Параметри

class

interface

Значення, що повертаються

Приклади

Приклад #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"
}
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top