PHP | SplObjectStorage offsetExists()函数
SplObjectStorage::offsetExists()函数是PHP中的一个内置函数,用于检查对象是否存在于存储中。
句法:
bool SplObjectStorage::offsetExists($object)
参数:此函数接受单个参数$object ,它指定要检查的对象。
返回值:如果对象存在于存储中,此函数返回true,否则返回false。
下面的程序说明了PHP中的SplObjectStorage::offsetExists()函数:
方案一:
php
attach($obj);
// Print Result
var_dump($str->offsetExists($obj));
?>
php
attach($obj1, "GeksforGeeks");
$str->attach($obj2, "GFG");
$str->attach($obj3);
// Print result
var_dump($str->offsetExists($obj1));
var_dump($str->offsetExists($obj2));
var_dump($str->offsetExists($obj4));
var_dump($str->offsetExists($obj3));
?>
输出:
bool(true)
方案二:
PHP
attach($obj1, "GeksforGeeks");
$str->attach($obj2, "GFG");
$str->attach($obj3);
// Print result
var_dump($str->offsetExists($obj1));
var_dump($str->offsetExists($obj2));
var_dump($str->offsetExists($obj4));
var_dump($str->offsetExists($obj3));
?>
输出:
bool(true)
bool(true)
bool(false)
bool(true)
参考: https://www. PHP.net/manual/en/splobjectstorage.offsetexists。 PHP