update : 2015.11.03
php.shukuma.com

검색:
 
 
Checks if deprecated

ReflectionFunctionAbstract::isDeprecated

(PHP 5)

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)