Friday, October 10, 2025
HomeLanguagesPHP | ReflectionProperty getModifiers() Function

PHP | ReflectionProperty getModifiers() Function

The ReflectionProperty::getModifiers() function is an inbuilt function in PHP which is used to return the numeric representation of the specified modifiers.

Syntax:

int ReflectionProperty::getModifiers ( void )

Parameters: This function does not accept any parameters.

Return Value: This function returns the numeric representation of the specified modifiers.

Below programs illustrate the ReflectionProperty::getModifiers() function in PHP:

Program 1:




<?php
  
// Initializing a user-defined class Company
class Company {
    public $SizeOfneveropen = 13;
    protected $SizeOfGFG = 3;
}
  
// Using ReflectionProperty 
$A = new ReflectionProperty('Company', 'SizeOfneveropen');
$B = new ReflectionProperty('Company', 'SizeOfGFG');
  
// Calling the getModifiers() function
$C = $A->getModifiers();
$D = $B->getModifiers();
  
// Getting the numeric representation of
// the specified modifiers.
var_dump($C);
var_dump($D);
?>


Output:

int(256)
int(512)

Program 2:




<?php
  
// Initializing some user-defined classes
class Department1
{
    protected $SizeOfHR = 2;
}
class Department2
{
    public $SizeOfCoding = 6;
}
class Department3
{
    private $SizeOfMarketing = 9;
}
  
// Using ReflectionProperty over above classes
$A = new ReflectionProperty('Department1', 'SizeOfHR');
$B = new ReflectionProperty('Department2', 'SizeOfCoding');
$C = new ReflectionProperty('Department3', 'SizeOfMarketing');
  
// Calling the getModifiers() function
$D = $A->getModifiers();
$E = $B->getModifiers();
$F = $C->getModifiers();
  
// Getting the numeric representation
// of the specified modifiers.
var_dump($D);
var_dump($E);
var_dump($F);
?>


Output:

int(512)
int(256)
int(1024)

Reference: https://www.php.net/manual/en/reflectionproperty.getmodifiers.php

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32350 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6718 POSTS0 COMMENTS
Nicole Veronica
11880 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6838 POSTS0 COMMENTS
Ted Musemwa
7101 POSTS0 COMMENTS
Thapelo Manthata
6794 POSTS0 COMMENTS
Umr Jansen
6794 POSTS0 COMMENTS