ReflectionClass::isInternal

(PHP 5, PHP 7, PHP 8)

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

Description

public ReflectionClass::isInternal(): bool

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

Parameters

This function has no parameters.

Return Values

Returns true on success or false on failure.

Examples

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

The above example will output:

bool(true)
bool(false)

See Also

add a note

User Contributed Notes

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

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant