檢查一個偏移位置是否存在

ArrayAccess::offsetExists

(PHP 5, PHP 7, PHP 8)

ArrayAccess::offsetExists檢查一個偏移位置是否存在

說明

public ArrayAccess::offsetExists(mixed $offset): bool

檢查一個偏移位置是否存在。

對一個實現了 ArrayAccess 介面的對象使用 isset()empty() 時,此方法將執行。

注意:

當使用 empty() 並且僅當 ArrayAccess::offsetExists() 返回 true 時,ArrayAccess::offsetGet() 將被呼叫以檢查是為否空。

參數

offset

需要檢查的偏移位置。

返回值

成功時返回 true, 或者在失敗時返回 false

注意:

如果一個非布爾型返回值被返回,將被轉換為 bool

範例

示例 #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 
"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"]));
?>

以上例程的輸出類似於:

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)

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *