(PECL uopz >= 1.0.0)
Implements an interface at runtime
void uopz_implement ( string $class, string $interface )
Makes class
implement interface
Parameters:
class
Makes class
implement interface
interface
Makes class
implement interface
Returns:
Examples:
uopz_implement() example
1 2 3 4 5 6 7 8 9 | <?php interface myInterface {} class myClass {} uopz_implement(myClass:: class , myInterface:: class ); var_dump(class_implements(myClass:: class )); ?> |
The above example will output something similar to:
array(1) { ["myInterface"]=> string(11) "myInterface" }
Please login to continue.