Yoast\WP\Lib
ORM::offsetExists
Checks whether the data has the key.
Метод класса: ORM{}
Хуков нет.
Возвращает
true|false. Whether the data has the key.
Использование
$ORM = new ORM(); $ORM->offsetExists( $offset );
- $offset(разное) (обязательный)
- Key.
Код ORM::offsetExists() ORM::offsetExists Yoast 27.8
public function offsetExists( $offset ) {
return \array_key_exists( $offset, $this->data );
}