php8.5
Home/ Manual/ uopz / functions/ uopz_implement

uopz_implement

PHP function Edit on GitHub ✎

(PECL uopz 1, PECL uopz 2, PECL uopz 5, PECL uopz 6, PECL uopz 7 < 7.1.0)

Implements an interface at runtime

Description

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

Makes class implement interface

Parameters

class
interface

Return Values

Success

Errors/Exceptions

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

Examples

uopz_implement() example

php
<?php
interface myInterface {}

class myClass {}

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

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

The above example will output:

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

Source: reference/uopz/functions/uopz-implement.xml · from the official PHP manual (php/doc-en)