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 23.5
public function offsetGet( $offset ) { return $this->get( $offset ); }