La función ReflectionClass::isIterateable() es una función incorporada en PHP que se usa para verificar si la clase definida es iterable o no.
Sintaxis:
bool ReflectionClass::isIterateable()
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve VERDADERO si la clase definida es iterable; de lo contrario, FALSO.
Los siguientes programas ilustran la función ReflectionClass::isIterateable() en PHP:
Programa 1:
<?php // Creating an iterating class p class p implements Iterator { public function rewind() {} public function next() {} public function valid() {} public function current() {} public function key() {} } // Using ReflectionClass() over the // class p $class = new ReflectionClass('p'); // Calling the isIterateable() function $A = $class->isIterateable(); // Getting the value true or false var_dump($A); ?>
Producción:
bool(true)
Programa 2:
<?php // Creating an iterating class p class p { public function getIterator() {} } // Using ReflectionClass() over the // class p $class = new ReflectionClass('p'); // Calling the isIterateable() function $A = $class->isIterateable(); // Getting the value true or false var_dump($A); ?>
Producción:
bool(false)
Referencia: https://www.php.net/manual/en/reflectionclass.isiterateable.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