ReflectionFunctionAbstract::isDeprecated

(PHP 5, PHP 7)

ReflectionFunctionAbstract::isDeprecatedChecks if deprecated

설명

public bool ReflectionFunctionAbstract::isDeprecated ( void )

Checks whether the function is deprecated.

인수

이 함수는 인수가 없습니다.

반환값

TRUE if it's deprecated, otherwise FALSE

예제

Example #1 ReflectionFunctionAbstract::isDeprecated() example

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

위 예제의 출력:

bool(true)

add a note add a note

User Contributed Notes

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