PHP | ReflectionProperty isPublic() Function
Last Updated :
30 Dec, 2019
Improve
The ReflectionProperty::isPublic() function is an inbuilt function in PHP which is used to return TRUE if the specified property is public, FALSE otherwise.
Syntax:
php
php
bool ReflectionProperty::isPublic ( void )Parameters: This function does not accept any parameter. Return Value: This function returns TRUE if the specified property is public, FALSE otherwise. Below programs illustrate the ReflectionProperty::isPublic() function in PHP: Program 1:
<?php
// Initializing a user-defined class Company
class Company
{
protected $SizeOfGeeksforGeeks = 13;
public $SizeOfGFG = 3;
}
// Using ReflectionProperty
$A = new ReflectionProperty('Company', 'SizeOfGeeksforGeeks');
$B = new ReflectionProperty('Company', 'SizeOfGFG');
// Calling the isPublic() function
$C = $A->isPublic();
$D = $B->isPublic();
// Getting TRUE if the specified property
// is public, FALSE otherwise.
var_dump($C);
var_dump($D);
?>
<?php
// Initializing a user-defined class Company
class Company
{
protected $SizeOfGeeksforGeeks = 13;
public $SizeOfGFG = 3;
}
// Using ReflectionProperty
$A = new ReflectionProperty('Company', 'SizeOfGeeksforGeeks');
$B = new ReflectionProperty('Company', 'SizeOfGFG');
// Calling the isPublic() function
$C = $A->isPublic();
$D = $B->isPublic();
// Getting TRUE if the specified property
// is public, FALSE otherwise.
var_dump($C);
var_dump($D);
?>
Output:
Program 2:
bool(false) bool(true)
<?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 isPublic() function and
// getting TRUE if the specified property
// is public, FALSE otherwise.
var_dump($A->isPublic());
var_dump($B->isPublic());
var_dump($C->isPublic());
?>
<?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 isPublic() function and
// getting TRUE if the specified property
// is public, FALSE otherwise.
var_dump($A->isPublic());
var_dump($B->isPublic());
var_dump($C->isPublic());
?>
Output:
Reference: https://www.php.net/manual/en/reflectionproperty.isprotected.php
bool(false) bool(true) bool(false)