WC_Product_Attribute::offsetExists
OffsetExists.
Метод класса: WC_Product_Attribute{}
Хуков нет.
Возвращает
bool.
Использование
$WC_Product_Attribute = new WC_Product_Attribute(); $WC_Product_Attribute->offsetExists( $offset );
- $offset(строка) (обязательный)
- Offset.
Код WC_Product_Attribute::offsetExists() WC Product Attribute::offsetExists WC 11.1.2
public function offsetExists( $offset ) {
return in_array( $offset, array_merge( array( 'is_variation', 'is_visible', 'is_taxonomy', 'value' ), array_keys( $this->data ), array_keys( $this->extra_data ) ), true );
}