ReflectionClass::isInternal
(PHP 5)
ReflectionClass::isInternal — Checks if class is defined internally by an extension, or the core
Descrierea
public bool ReflectionClass::isInternal
( void
)
Checks if the class is defined internally by an extension, or the core, as opposed to user-defined.
Parametri
Această funcție nu are parametri.
Valorile întoarse
Întoarce valoarea TRUE în cazul
succesului sau FALSE în cazul eșecului.
Exemple
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());
?>
Exemplul de mai sus va afișa:
bool(true) bool(false)
There are no user contributed notes for this page.
