WC_Order_Item_Shipping::offsetExists()
Offset exists: for ArrayAccess.
Method of the class: WC_Order_Item_Shipping{}
No Hooks.
Return
true|false
.
Usage
$WC_Order_Item_Shipping = new WC_Order_Item_Shipping(); $WC_Order_Item_Shipping->offsetExists( $offset );
- $offset(string) (required)
- Key.
WC_Order_Item_Shipping::offsetExists() WC Order Item Shipping::offsetExists code WC 9.4.2
public function offsetExists( $offset ) { if ( in_array( $offset, array( 'cost' ), true ) ) { return true; } return parent::offsetExists( $offset ); }