is_iterable()函數是PHP中的內置函數,用於檢查變量的內容是否為可迭代的值。
用法:
bool is_iterable( mixed $var )
參數:該函數接受上述和以下描述的單個參數:
- $var:它包含需要檢查的變量的值。
返回值:如果變量的值是可迭代的,則返回TRUE,否則返回FALSE。
程序1:
<?php
// Declare an array
$arr = array(1, 2, 3, 4, 5);
if(is_iterable($arr)) {
echo "Array is iterable";
}
else {
echo "Array is not iterable";
}
// Create a class
class GFG {
}
// Create an object
$obj = new GFG();
if(is_iterable($obj)) {
echo "\nObject is iterable";
}
else {
echo "\nObject is not iterable";
}
?>
輸出:
Array is iterable Object is not iterable
程序2:
<?php
// Create a class
class GFG {
public $Geek_name = "Welcome to GeeksforGeeks";
}
$obj = new GFG();
var_dump(is_iterable($obj));
$arr = array('G', 'e', 'e', 'k', 's');
var_dump(is_iterable($arr));
$num = 25;
var_dump(is_iterable($num));
$str = "GeeksforGeeks";
var_dump(is_iterable($str));
$bool = true;
var_dump(is_iterable($bool));
?>
輸出:
bool(false) bool(true) bool(false) bool(false) bool(false)
參考: https://www.php.net/manual/en/function.is-iterable.php
相關用法
- PHP Ds\Set contains()用法及代碼示例
- PHP sin( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- p5.js box()用法及代碼示例
- PHP abs()用法及代碼示例
- PHP Ds\Map first()用法及代碼示例
- PHP Ds\Map map()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP cos( )用法及代碼示例
- d3.js d3.max()用法及代碼示例
- p5.js value()用法及代碼示例
注:本文由純淨天空篩選整理自AshokJaiswal大神的英文原創作品 PHP | is_iterable() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。