(PHP 5, PHP 7)
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.
이 함수는 인수가 없습니다.
성공 시 TRUE
를, 실패 시 FALSE
를 반환합니다.
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());
?>
위 예제의 출력:
bool(true) bool(false)