Monday, December 22, 2025
HomeLanguagesPHP | ReflectionClass isFinal() Function

PHP | ReflectionClass isFinal() Function

The ReflectionClass::isFinal() function is an inbuilt function in PHP which is used to check the specified class is final or not.

Syntax:

bool ReflectionClass::isFinal( void )

Parameters: This function does not accept any parameters.

Return Value: This function returns true for the success or false on failure.

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




<?php
  
// Defining a non final class
class GFG {}
  
// Defining a final class
final class neveropen {}
  
// Using ReflectionClass over the 
// Non final class GFG
$B = new ReflectionClass('GFG');
  
// Calling the isFinal() function
$C = $B->isFinal();
  
// Getting the value true or false
var_dump($C);
  
?>


Output:

bool(false)

Program 2:




<?php
  
// Defining a non final class
class GFG {}
  
// Defining a final class
final class neveropen {}
  
// Using ReflectionClass over the 
// final class neveropen
$B = new ReflectionClass('neveropen');
  
// Calling the isFinal() function
$C = $B->isFinal();
  
// Getting the value true or false
var_dump($C);
  
?>


Output:

bool(true)

Reference: https://secure.php.net/manual/en/reflectionclass.isfinal.php

RELATED ARTICLES

Most Popular

Dominic
32456 POSTS0 COMMENTS
Milvus
111 POSTS0 COMMENTS
Nango Kala
6823 POSTS0 COMMENTS
Nicole Veronica
11959 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12038 POSTS0 COMMENTS
Shaida Kate Naidoo
6958 POSTS0 COMMENTS
Ted Musemwa
7203 POSTS0 COMMENTS
Thapelo Manthata
6911 POSTS0 COMMENTS
Umr Jansen
6890 POSTS0 COMMENTS