array_key_exists
函数用于检查数组中是否存在指定的键名。它不能直接检查类的实例属性。但是,你可以通过遍历类的对象属性来实现类似的功能。以下是一个示例:
class MyClass {
public $properties = array();
}
$obj = new MyClass();
$obj->properties['key'] = 'value';
function isArrayKeyExistsInObjectProperties($obj, $key) {
foreach ($obj->properties as $k => $v) {
if ($k === $key) {
return true;
}
}
return false;
}
$keyToCheck = 'key';
if (isArrayKeyExistsInObjectProperties($obj, $keyToCheck)) {
echo "The key '{$keyToCheck}' exists in the object properties.";
} else {
echo "The key '{$keyToCheck}' does not exist in the object properties.";
}
在这个示例中,我们定义了一个名为 MyClass
的类,它具有一个名为 $properties
的公共数组属性。然后,我们创建了一个 MyClass
的实例,并向其 $properties
数组添加了一个键值对。接下来,我们定义了一个名为 isArrayKeyExistsInObjectProperties
的函数,该函数接受一个对象和一个键名作为参数,并遍历对象的属性以检查指定的键名是否存在。最后,我们使用这个函数来检查一个键名是否存在于对象的属性中。