GoLang ReflectionClass::isSubclassOf

request it (289)
GoLang replacement for PHP's ReflectionClass::isSubclassOf [edit | history]



Do you know a GoLang replacement for PHP's ReflectionClass::isSubclassOf? Write it!

PHP ReflectionClass::isSubclassOf

PHP original manual for ReflectionClass::isSubclassOf [ show | php.net ]

ReflectionClass::isSubclassOf

(PHP 5, PHP 7)

ReflectionClass::isSubclassOfChecks if a subclass

Description

public bool ReflectionClass::isSubclassOf ( string $class )

Checks if the class is a subclass of a specified class or implements a specified interface.

Parameters

class

The class name being checked against.

Return Values

Returns TRUE on success or FALSE on failure.

See Also