WC_Product_Download::offsetExistspublicWC 1.0ReturnTypeWillChange

OffsetExists.

Method of the class: WC_Product_Download{}

No Hooks.

Returns

true|false.

Usage

$WC_Product_Download = new WC_Product_Download();
$WC_Product_Download->offsetExists( $offset );
$offset(string) (required)
Offset.

WC_Product_Download::offsetExists() code WC 10.8.1

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