uopz_implement

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

uopz_implementImplements an interface at runtime

說明

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

Makes class implement interface

參數(shù)

class

interface

返回值

成功時返回 true, 或者在失敗時返回 false。

錯誤/異常

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

范例

示例 #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"
}