Monday, June 8, 2026
HomeLanguagesPHP | ReflectionClass isInternal() Function

PHP | ReflectionClass isInternal() Function

The ReflectionClass::isInternal() function is an inbuilt function in PHP which is used to check if class is defined internally by an extension, or the core.

Syntax:

bool ReflectionClass::isInternal( void )

Parameters: This function does not accept any parameters.

Return Value: This function returns TRUE if the class is defined internally by an extension, otherwise FALSE.

Below programs illustrate the ReflectionClass::isInternal() function in PHP:

Program 1:




<?php
  
// Initializing a user-defined class Departments
class Departments {
    public function CSE() {}
}
  
// Using ReflectionClass() over the
// user-defined class Departments
$class = new ReflectionClass('Departments');
  
// Calling the isInternal() function
$instance = $class->isInternal();
  
// Getting the value true or false
var_dump($instance);
?>


Output:

bool(false)

Program 2:




<?php
  
// Using ReflectionClass internally
$InternalClass = new ReflectionClass('ReflectionClass');
  
// Calling the isInternal() function and
// getting the value true or false
var_dump($InternalClass->isInternal());
?>


Output:

bool(true)

Reference: https://www.php.net/manual/en/reflectionclass.isinternal.php

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6895 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7018 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS