PHP | SplFixedArray offsetExists()函数
SplFixedArray::offsetExists()函数是PHP中的一个内置函数,用于检查提供的索引是否存在于数组中。
句法:
bool SplFixedArray::offsetExists( $index )
参数:此函数接受指定请求索引的单个参数$ index。
返回值:如果找到请求的索引,此函数返回 true,否则返回 false。
下面的程序说明了PHP中的SplFixedArray::offsetExists()函数:
方案一:
offsetExists(2));
?>
输出:
bool(true)
方案二:
offsetExists($i));
$i++;
}
?>
输出:
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(false)
bool(false)
参考: https://www. PHP.net/manual/en/splfixedarray.offsetexists。 PHP