(PHP 5, PHP 7)
ReflectionClass::isInternal — Checks if class is defined internally by an extension, or the core
public ReflectionClass::isInternal ( ) : bool
Checks if the class is defined internally by an extension, or the core, as opposed to user-defined.
This function has no parameters.
Returns true
on success or false
on failure.
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()); ?>
The above example will output:
bool(true) bool(false)
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/reflectionclass.isinternal.php