ReflectionFunctionAbstract::isDeprecated

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

ReflectionFunctionAbstract::isDeprecated檢查是否已經(jīng)棄用

說明

public ReflectionFunctionAbstract::isDeprecated(): bool

檢查函數(shù)是否已經(jīng)被棄用

參數(shù)

此函數(shù)沒有參數(shù)。

返回值

棄用返回 true,否則返回 false

范例

示例 #1 ReflectionFunctionAbstract::isDeprecated() example

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

以上例程會輸出:

bool(true)

參見