ReflectionClass::isInternal

(PHP 5, PHP 7)

ReflectionClass::isInternal������Ƿ�����չ��������ڲ�����

˵��

public ReflectionClass::isInternal ( void ) : bool

������Ƿ�����չ��������ڲ����壬���û������෴��

����

�˺���û�в�����

����ֵ

�ɹ�ʱ���� TRUE�� ������ʧ��ʱ���� FALSE��

����

Example #1 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)

�μ�