(PHP 5, PHP 7, PHP 8)
ArrayAccess::offsetExists — 檢查一個(gè)偏移位置是否存在
檢查一個(gè)偏移位置是否存在。
對(duì)一個(gè)實(shí)現(xiàn)了 ArrayAccess 接口的對(duì)象使用 isset() 或 empty() 時(shí),此方法將執(zhí)行。
注意:
當(dāng)使用 empty() 并且僅當(dāng) ArrayAccess::offsetExists() 返回
true
時(shí),ArrayAccess::offsetGet() 將被調(diào)用以檢查是為否空。
offset
需要檢查的偏移位置。
成功時(shí)返回 true
, 或者在失敗時(shí)返回 false
。
注意:
如果一個(gè)非布爾型返回值被返回,將被轉(zhuǎn)換為 bool 。
示例 #1 ArrayAccess::offsetExists() 范例
<?php
class obj implements arrayaccess {
public function offsetSet($offset, $value) {
var_dump(__METHOD__);
}
public function offsetExists($var) {
var_dump(__METHOD__);
if ($var == "foobar") {
return true;
}
return false;
}
public function offsetUnset($var) {
var_dump(__METHOD__);
}
public function offsetGet($var) {
var_dump(__METHOD__);
return "value";
}
}
$obj = new obj;
echo "Runs obj::offsetExists()\n";
var_dump(isset($obj["foobar"]));
echo "\nRuns obj::offsetExists() and obj::offsetGet()\n";
var_dump(empty($obj["foobar"]));
echo "\nRuns obj::offsetExists(), *not* obj:offsetGet() as there is nothing to get\n";
var_dump(empty($obj["foobaz"]));
?>
以上例程的輸出類(lèi)似于:
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)