Monday, September 23, 2024
Google search engine
HomeLanguagesPHP | ReflectionProperty isProtected() Function

PHP | ReflectionProperty isProtected() Function

The ReflectionProperty::isProtected() function is an inbuilt function in PHP which is used to return TRUE if the specified property is protected, FALSE otherwise.

Syntax:

bool ReflectionProperty::isProtected( void )

Parameters: This function does not accept any parameter.

Return Value: This function returns TRUE if the specified property is protected, FALSE otherwise.

Below programs illustrate the ReflectionProperty::isProtected() function in PHP:
Program 1:




<?php
  
// Initializing some user-defined classes
class Department1
{
    protected $SizeOfHR;
}
class Department2
{
    public $SizeOfCoding = 6;
}
class Department3
{
    protected $SizeOfMarketing = 9;
}
  
// Using ReflectionProperty over above classes
$A = new ReflectionProperty('Department1', 'SizeOfHR');
$B = new ReflectionProperty('Department2', 'SizeOfCoding');
$C = new ReflectionProperty('Department3', 'SizeOfMarketing');
  
// Calling the isProtected() function and
// getting TRUE if the specified property
// is protected, FALSE otherwise.
var_dump($A->isProtected());
var_dump($B->isProtected());
var_dump($C->isProtected());
?>


Output:

bool(true)
bool(false)

Program 2:





Output:

bool(true)
bool(false)
bool(true)

Reference: https://www.php.net/manual/en/reflectionproperty.isprotected.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

Recent Comments