(PHP 5, PHP 7)
ReflectionFunctionAbstract::isDeprecated — Checks if deprecated
Checks whether the function is deprecated.
Diese Funktion hat 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)