SplObjectStorage::offsetExists()函数是PHP中的一个内置函数,用于检查对象是否存在于存储中。
用法:
bool SplObjectStorage::offsetExists($object)
参数:该函数接受单个参数$object,该参数指定要检查的对象。
返回值:如果对象存在于存储中,则此函数返回true,否则返回false。
以下示例程序旨在说明PHP中的SplObjectStorage::offsetExists()函数:
程序1:
<?php
// Create an empty SplObjectStorage
$str = new SplObjectStorage;
$obj = new StdClass;
// Attch $obj to $str
$str->attach($obj);
// Print Result
var_dump($str->offsetExists($obj));
?>
输出:
bool(true)
程序2:
<?php
// Create an Empty SplObjectStorage
$str = new SplObjectStorage();
$obj1 = new StdClass;
$obj2 = new StdClass;
$obj3 = new StdClass;
$obj4 = new StdClass;
// Attach only three objects
$str->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
相关用法
- PHP ArrayObject offsetExists()用法及代码示例
- PHP SplDoublyLinkedList offsetExists()用法及代码示例
- PHP SplFixedArray offsetExists()用法及代码示例
- PHP ArrayIterator offsetExists()用法及代码示例
- PHP SplObjectStorage key()用法及代码示例
- PHP SplObjectStorage next()用法及代码示例
- PHP SplObjectStorage contains()用法及代码示例
- PHP SplObjectStorage removeAll()用法及代码示例
- PHP SplObjectStorage offsetUnset()用法及代码示例
- PHP SplObjectStorage attach()用法及代码示例
- PHP SplObjectStorage setInfo()用法及代码示例
- PHP SplObjectStorage serialize()用法及代码示例
- PHP SplObjectStorage removeAllExcept()用法及代码示例
- PHP SplObjectStorage rewind()用法及代码示例
- PHP SplObjectStorage unserialize()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | SplObjectStorage offsetExists() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。