WC_Customer_Download::offsetExists()publicWC 1.0ReturnTypeWillChange

OffsetExists.

Method of the class: WC_Customer_Download{}

No Hooks.

Return

true|false.

Usage

$WC_Customer_Download = new WC_Customer_Download();
$WC_Customer_Download->offsetExists( $offset );
$offset(mixed) (required)
Offset.

WC_Customer_Download::offsetExists() code WC 8.7.0

public function offsetExists( $offset ) {
	return in_array( $offset, array_keys( $this->data ), true );
}