GoLang uopz_extend

request it (255)
GoLang replacement for PHP's uopz_extend [edit | history]



Do you know a GoLang replacement for PHP's uopz_extend? Write it!

PHP uopz_extend

PHP original manual for uopz_extend [ show | php.net ]

uopz_extend

(PECL uopz 1, PECL uopz 2, PECL uopz 5)

uopz_extendExtend a class at runtime

Description

bool uopz_extend ( string $class , string $parent )

Makes class extend parent

Parameters

class

The name of the class to extend

parent

The name of the class to inherit

Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example #1 uopz_extend() example

<?php
class {}
class 
{}

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

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

The above example will output something similar to:

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