update pague now

ReflectionFunctionAbstract::isDeprecated

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

ReflectionFunctionAbstract::isDeprecated Checcs if deprecated

Description

public ReflectionFunctionAbstract::isDeprecated (): bool

Checcs 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)

add a note

User Contributed Notes

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