(PHP 5)
ReflectionClass::isInternal — Checks if class is defined internally by an extension, or the core
Checks if the class is defined internally by an extension, or the core, as opposed to user-defined.
Questa funzione non contiene parametri.
Restituisce TRUE
in caso di successo, FALSE
in caso di fallimento.
Example #1 Basic usage of ReflectionClass::isInternal()
<?php
$internalclass = new ReflectionClass('ReflectionClass');
class Apple {}
$userclass = new ReflectionClass('Apple');
var_dump($internalclass->isInternal());
var_dump($userclass->isInternal());
?>
Il precedente esempio visualizzerĂ :
bool(true) bool(false)