La función ReflectionProperty::isPublic() es una función incorporada en PHP que se usa para devolver VERDADERO si la propiedad especificada es pública, FALSO de lo contrario.
Sintaxis:
bool ReflectionProperty::isPublic ( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve VERDADERO si la propiedad especificada es pública, FALSO de lo contrario.
Los siguientes programas ilustran la función ReflectionProperty::isPublic() en PHP:
Programa 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); ?>
Producción:
bool(false) bool(true)
Programa 2:
<?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()); ?>
Producción:
bool(false) bool(true) bool(false)
Referencia: https://www.php.net/manual/en/reflectionproperty.isprotected.php
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA