Wednesday, June 17, 2026
HomeLanguagesPHP | ReflectionClass getParentClass() Function

PHP | ReflectionClass getParentClass() Function

The ReflectionClass::getParentClass() function is an inbuilt function in PHP which is used to return the specified parent class or false if there is no parent class is present.

Syntax:

ReflectionClass ReflectionClass::getParentClass ( void )

Parameters: This function does not accept any parameters.

Return Value: This function returns the specified parent class or false if there is no parent class is present.

Below programs illustrate the ReflectionClass::getParentClass() function in PHP:
Program 1:




<?php
   
// Defining a class named as College
class College {
       
    // Defining a protected property
    protected $College_Name = 'IIT Delhi';
}
   
// Defining a sub class Departments of the 
// base class College
class Departments extends College {
    public $Dept1 = 'CSE';
    private $Dept2 = 'ECE';
    public static $Dept3 = 'EE';
}
   
// Using ReflectionClass over sub class Departments
$ReflectionClass = new ReflectionClass('Departments');
   
// Getting the name of the parent class
var_dump($ReflectionClass->getParentClass());
?>


Output:

object(ReflectionClass)#2 (1) {
  ["name"]=>
  string(7) "College"
}

Program 2:




<?php
   
// Defining a class named as College
class College {
       
    // Defining a protected property
    protected $College_Name = 'IIT Delhi';
}
   
// Using ReflectionClass over the class College
$ReflectionClass = new ReflectionClass('College');
   
// Getting the name of the parent class
var_dump($ReflectionClass->getParentClass());
?>


Output:

bool(false)

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

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32516 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6898 POSTS0 COMMENTS
Nicole Veronica
12014 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS