WC_Order_Item::offsetExists( string $offset )
OffsetExists for ArrayAccess.
Description Description
Parameters Parameters
- $offset
-
(Required) Offset.
Return Return
(bool)
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' ) ); }