LonghornPHP 2026

is_iterable

(PHP 7 >= 7.1.0, PHP 8)

is_iterable Determina si el contenido de la variable es iterable.

Descripción

function is_iterable(mixed $value): bool

Verifica que el contenido de la variable es aceptado por el pseudo-tipo iterable , es decir, que se trata de un array o un objeto que implementa la interfaz Traversable .

Parámetros

value

El valor a verificar.

Valores devueltos

Retorna true si value es iterable, false en caso contrario.

Ejemplos

Ejemplo #1 Ejemplos con is_iterable()

<?php
var_dump(is_iterable([1, 2, 3])); // bool(true)
var_dump(is_iterable(new ArrayIterator([1, 2, 3]))); // bool(true)
var_dump(is_iterable((function () { yield 1; })())); // bool(true)
var_dump(is_iterable(1)); // bool(false)
var_dump(is_iterable(new stdClass())); // bool(false)
?>

Véase también

  • is_array() - Determina si una variable es un array

Found A Problem?

Learn How To Improve This PageSubmit a Pull RequestReport a Bug
+add a note

User Contributed Notes 2 notes

up
35
mopsyd at me dot com
8 years ago
A slight correction to brcontainer's polyfill, which prevents errors on a non-object in a non-blocking way, and also corrects the issue of the conditional checking "file_exists" instead of the correct "function_exists":
if ( !function_exists( 'is_iterable' ) )
{
 function is_iterable( $obj )
 {
 return is_array( $obj ) || ( is_object( $obj ) && ( $obj instanceof \Traversable ) );
 }
}
The original answer would not have resolved correctly, because it was looking for a file instead of a function, and the provided method would error if given a non-iterable non-object value such as false.
+add a note

AltStyle によって変換されたページ (->オリジナル) /