La función ReflectionProperty::isProtected() es una función incorporada en PHP que se usa para devolver VERDADERO si la propiedad especificada está protegida, FALSO de lo contrario.
Sintaxis:
bool ReflectionProperty::isProtected( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve VERDADERO si la propiedad especificada está protegida, FALSO de lo contrario.
Los siguientes programas ilustran la función ReflectionProperty::isProtected() 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 isProtected() function $C = $A->isProtected(); $D = $B->isProtected(); // Getting TRUE if the specified property // is protected, FALSE otherwise. var_dump($C); var_dump($D); ?>
Producción:
bool(true) bool(false)
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 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()); ?>
Producción:
bool(true) bool(false) bool(true)
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