PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

is_iterable - Verify that the contents of a variable is an iterable value | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

is_iterable

(PHP 7 >= 7.1.0)

is_iterable Verify that the contents of a variable is an iterable value

説明

bool is_iterable ( mixed $var )

Verify that the contents of a variable is accepted by the iterable pseudo-type, i.e. that it is an array or an object implementing Traversable

パラメータ

var

The value to check

返り値

Returns TRUE if var is iterable, FALSE otherwise.

例1 is_iterable() examples

<?php

var_dump
(is_iterable([123]));  // bool(true)
var_dump(is_iterable(new ArrayIterator([123])));  // 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)

?>

参考

  • is_array() - 変数が配列かどうかを検査する


忘却曲線を使ってこの関数を確実に記憶に残す

フォーラムで「is_iterable - Verify that the contents of a variable is an iterable value」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | is_iterable - Verify that the contents of a variable is an iterable value」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: