(PHP 5 >= 5.2.0, PHP 7, PHP 8)
ReflectionFunctionAbstract::isDeprecated — Checks if deprecated
Checks whether the function is deprecated.
Diese Funktion besitzt keine Parameter.
true
if it's deprecated, otherwise false
Beispiel #1 ReflectionFunctionAbstract::isDeprecated() example
<?php
$rf = new ReflectionFunction('ereg');
var_dump($rf->isDeprecated());
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
bool(true)