Tribe__Data::offsetExists( mixed $offset )

Whether a offset exists


Parameters

$offset

(mixed) (Required) An offset to check for.


Top ↑

Return

(boolean) true on success or false on failure. The return value will be cast to boolean if non-boolean was returned.


Top ↑

Source

File: src/Tribe/Data.php

	public function offsetExists( $offset ) {
		return isset( $this->data[ $offset ] );
	}

Top ↑

Changelog

Changelog
Version Description
4.11.0 Introduced.