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