La función ReflectionProperty::isStatic() es una función incorporada en PHP que se usa para devolver VERDADERO si la propiedad especificada es estática; de lo contrario, devuelve FALSO.
Sintaxis:
bool ReflectionProperty::isStatic( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve VERDADERO si la propiedad especificada es estática; de lo contrario, devuelve FALSO.
Los siguientes programas ilustran la función ReflectionProperty::isStatic() en PHP:
Programa 1:
<?php // Initializing a user-defined class Company class Company { protected $SizeOfGeeksforGeeks = 13; static $SizeOfGFG = 3; } // Using ReflectionProperty $A = new ReflectionProperty('Company', 'SizeOfGeeksforGeeks'); $B = new ReflectionProperty('Company', 'SizeOfGFG'); // Calling the isStatic() function $C = $A->isStatic(); $D = $B->isStatic(); // Getting TRUE if the specified property // is static, 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 { static $SizeOfMarketing = 9; } // Using ReflectionProperty over above classes $A = new ReflectionProperty('Department1', 'SizeOfHR'); $B = new ReflectionProperty('Department2', 'SizeOfCoding'); $C = new ReflectionProperty('Department3', 'SizeOfMarketing'); // Calling the isStatic() function and // getting TRUE if the specified property // is static, FALSE otherwise. var_dump($A->isStatic()); var_dump($B->isStatic()); var_dump($C->isStatic()); ?>
Producción:
bool(false) bool(false) bool(true)
Referencia: https://secure.php.net/manual/en/reflectionproperty.isstatic.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