WC_Product_CSV_Importer::parse_int_fieldpublicWC 1.0

Parse an int value field

Метод класса: WC_Product_CSV_Importer{}

Хуков нет.

Возвращает

int|Строку.

Использование

$WC_Product_CSV_Importer = new WC_Product_CSV_Importer();
$WC_Product_CSV_Importer->parse_int_field( $value );
$value(int) (обязательный)
field value.

Код WC_Product_CSV_Importer::parse_int_field() WC 10.7.0

public function parse_int_field( $value ) {
	// Similar to WC_Meta_Box_Product_Data::save, do not cast the empty value to int.
	// An empty value indicates that the field should be cleared.
	if ( '' === $value ) {
		return $value;
	}

	// Remove the ' prepended to fields that start with - if needed.
	$value = $this->unescape_data( $value );

	return intval( $value );
}