(PHP 8 >= 8.4.0)
ReflectionProperty::isFinal — Determines if this property is final or not
This function is currently not documented; only its argument list is available.
Returns whether the property is
final
.
If the property is marked private(set)
,
then it will also be implicitly final
.
This function has no parameters.
Returns true
if the property is explicitly marked final
,
or if it is implicitly final
due to being private(set)
.
Returns false
otherwise.
Example #1 ReflectionProperty::isFinal() example
<?php
class Example
{
public string $name;
final protected int $age;
public private(set) string $job;
}
$rClass = new \ReflectionClass(Example::class);
var_dump($rClass->getProperty('name')->isFinal());
var_dump($rClass->getProperty('age')->isFinal());
var_dump($rClass->getProperty('job')->isFinal());
?>
The above example will output:
bool(false) bool(true) bool(true)
Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!
Check out: eBank.nz (Art Generator) |
Netwrck.com (AI Tools) |
Text-Generator.io (AI API) |
BitBank.nz (Crypto AI) |
ReadingTime (Kids Reading) |
RewordGame |
BigMultiplayerChess |
WebFiddle |
How.nz |
Helix AI Assistant