Friday, October 24, 2025
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
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS