ReflectionClass::isInternal

(PHP 5)

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

Beskrivelse

public bool ReflectionClass::isInternal ( void )

Checks if the class is defined internally by an extension, or the core, as opposed to user-defined.

Parametre

This function has no parameters.

Returnerings Værdier

Returns TRUE on success or FALSE on failure.

Eksempler

Eksempel #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)

Se også

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top