Yoast\WP\Lib
ORM::offsetGet
Retrieves the value of the key.
Метод класса: ORM{}
Хуков нет.
Возвращает
Массив|Разное|null. The value.
Использование
$ORM = new ORM(); $ORM->offsetGet( $offset );
- $offset(разное) (обязательный)
- Key.
Код ORM::offsetGet() ORM::offsetGet Yoast 27.3
public function offsetGet( $offset ) {
return $this->get( $offset );
}