uopz_implement

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

uopz_implementImplements an interface at runtime

Descrierea

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

Makes class implement interface

Parametri

class

interface

Valorile întoarse

Întoarce valoarea true în cazul succesului sau false în cazul eșecului.

Erori/Excepții

As of PHP 7.4.0, uopz_implements() throws a RuntimeException, if OPcache is enabled, and the class entry of class is immutable.

Exemple

Example #1 uopz_implement() example

<?php
interface myInterface {}

class 
myClass {}

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

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

Exemplul de mai sus va afișa:

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