ArrayAccess::offsetExists

(PHP 5, PHP 7, PHP 8)

ArrayAccess::offsetExists是否偏移量存在

描述

public ArrayAccess::offsetExists(混合 $offset): 布尔值

是否偏移量存在。

当在实现 ArrayAccess 的对象上使用 isset()empty() 时,将执行此方法。

注意:

当使用 empty() 时,将调用 ArrayAccess::offsetGet() 并仅在 ArrayAccess::offsetExists() 返回 true 时检查是否为空。

参数

offset

要检查的偏移量。

返回值

成功时返回 true,失败时返回 false

注意:

如果返回值不是布尔值,则将转换为 布尔值

示例

示例 #1 ArrayAccess::offsetExists() 示例

<?php
class obj implements ArrayAccess {
public function
offsetSet($offset, $value): void {
var_dump(__METHOD__);
}
public function
offsetExists($var): bool {
var_dump(__METHOD__);
if (
$var == "foobar") {
return
true;
}
return
false;
}
public function
offsetUnset($var): void {
var_dump(__METHOD__);
}
#[
\ReturnTypeWillChange]
public function
offsetGet($var) {
var_dump(__METHOD__);
return
"value";
}
}

$obj = new obj;

echo
"运行 obj::offsetExists()\n";
var_dump(isset($obj["foobar"]));

echo
"\n运行 obj::offsetExists() 和 obj::offsetGet()\n";
var_dump(empty($obj["foobar"]));

echo
"\n运行 obj::offsetExists(),*不*运行 obj:offsetGet(),因为没有要获取的值\n";
var_dump(empty($obj["foobaz"]));
?>

上面的例子将输出类似于以下内容

Runs obj::offsetExists()
string(17) "obj::offsetExists"
bool(true)

Runs obj::offsetExists() and obj::offsetGet()
string(17) "obj::offsetExists"
string(14) "obj::offsetGet"
bool(false)

Runs obj::offsetExists(), *not* obj:offsetGet() as there is nothing to get
string(17) "obj::offsetExists"
bool(true)

添加说明

用户贡献说明

此页面没有用户贡献的说明。
To Top