GoLang ReflectionFunctionAbstract::isDeprecated

request it (192)
GoLang replacement for PHP's ReflectionFunctionAbstract::isDeprecated [edit | history]



Do you know a GoLang replacement for PHP's ReflectionFunctionAbstract::isDeprecated? Write it!

PHP ReflectionFunctionAbstract::isDeprecated

PHP original manual for ReflectionFunctionAbstract::isDeprecated [ show | php.net ]

ReflectionFunctionAbstract::isDeprecated

(PHP 5 >= 5.2.0, PHP 7)

ReflectionFunctionAbstract::isDeprecatedChecks if deprecated

Description

public bool ReflectionFunctionAbstract::isDeprecated ( void )

Checks whether the function is deprecated.

Parameters

This function has no parameters.

Return Values

TRUE if it's deprecated, otherwise FALSE

Examples

Example #1 ReflectionFunctionAbstract::isDeprecated() example

<?php
$rf 
= new ReflectionFunction('ereg');
var_dump($rf->isDeprecated());
?>

The above example will output:

bool(true)

See Also