PHP Conference Japan 2024

SplFixedArray::offsetExists

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

SplFixedArray::offsetExists返回请求的索引是否存在

描述

public SplFixedArray::offsetExists(int $index): bool

检查请求的索引 index 是否存在。

参数

index

正在检查的索引。

返回值

如果请求的 index 存在,则返回true,否则返回false

添加注释

用户贡献注释 1 个注释

4
depoemarc at swap dot fn dot ln dot googlemail dot com
9 年前
需要注意的是,offsetExists 的行为类似于“offsetIsSet”,而不是“offsetIsValid”。

<?php
$arr
= new SplFixedArray(3);
var_dump($arr->offsetExists(1)); // false

$arr[1] = 42; // $arr->offsetSet(1, 42);
var_dump($arr->offsetExists(1)); // true

$arr[1] = null; // $arr->offsetSet(1, null);
var_dump($arr->offsetExists(1)); // true

unset($arr[1]); // $arr->offsetUnset(1);
var_dump($arr->offsetExists(1)); // false

var_dump($arr);
/*
object(SplFixedArray)[1]
null
null
null
*/
?>
To Top