downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ReflectionClass::isIterateable> <ReflectionClass::isInterface
[edit] Last updated: Fri, 17 May 2013

view this page in

ReflectionClass::isInternal

(PHP 5)

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

Descrizione

public bool ReflectionClass::isInternal ( void )

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

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Restituisce TRUE in caso di successo, FALSE in caso di fallimento.

Esempi

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());
?>

Il precedente esempio visualizzerĂ :

bool(true)
bool(false)

Vedere anche:



add a note add a note User Contributed Notes ReflectionClass::isInternal - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites