ReflectionClass
PHP Manual

ReflectionClass::isInternal

(PHP 5)

ReflectionClass::isInternalChecks if class is defined internally by an extension, or the core

说明

public bool ReflectionClass::isInternal ( void )

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)

参见


ReflectionClass
PHP Manual