uopz_extend

(PECL uopz >= 1.0.0)

uopz_extendExtend a class at runtime

설명

void uopz_extend ( string $class , string $parent )

Makes class extend parent

인수

class

The name of the class to extend

parent

The name of the class to inherit

반환값

예제

Example #1 uopz_extend() example

<?php
class {}
class 
{}

uopz_extend(A::class, B::class);

var_dump(class_parents(A::class));
?>

위 예제의 출력 예시:

array(1) {
  ["B"]=>
  string(1) "B"
}
add a note add a note

User Contributed Notes

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