downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ReflectionFunctionAbstract::isInternal> <ReflectionFunctionAbstract::isClosure
[edit] Last updated: Fri, 25 May 2012

view this page in

ReflectionFunctionAbstract::isDeprecated

(PHP 5)

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



add a note add a note User Contributed Notes ReflectionFunctionAbstract::isDeprecated
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites