Friday, July 31, 2026
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

1 COMMENT

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6903 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6981 POSTS0 COMMENTS
Umr Jansen
6973 POSTS0 COMMENTS