WC_Order_Item::offsetExists( string $offset )

OffsetExists for ArrayAccess.


Description Description


Parameters Parameters

$offset

(Required) Offset.


Top ↑

Return Return

(bool)


Top ↑

Source Source

File: includes/class-wc-order-item.php

	public function offsetExists( $offset ) {
		$this->maybe_read_meta_data();
		if ( 'item_meta_array' === $offset || 'item_meta' === $offset || array_key_exists( $offset, $this->data ) ) {
			return true;
		}
		return array_key_exists( $offset, wp_list_pluck( $this->meta_data, 'value', 'key' ) ) || array_key_exists( '_' . $offset, wp_list_pluck( $this->meta_data, 'value', 'key' ) );
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.