No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

ReflectionClass::isFinal

(PHP 5, PHP 7)

ReflectionClass::isFinalChecks if class is final

Description

public ReflectionClass::isFinal ( void ) : bool

Checks if a class is final.

PHP: ReflectionClass::isFinal - Manual Home of Manuel PHP  Contents Haut

Parameters

This function has no parameters.

PHP: ReflectionClass::isFinal - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns TRUE on success or FALSE on failure.

PHP: ReflectionClass::isFinal - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 ReflectionClass::isFinal() example

<?php
class       TestClass { }
final class 
TestFinalClass { }

$normalClass = new ReflectionClass('TestClass');
$finalClass  = new ReflectionClass('TestFinalClass');

var_dump($normalClass->isFinal());
var_dump($finalClass->isFinal());

?>

The above example will output:

bool(false)
bool(true)

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph