WC_Product_CSV_Importer::parse_relative_comma_field
Parse relative comma-delineated field and return product ID.
Method of the class: WC_Product_CSV_Importer{}
No Hooks.
Returns
Array.
Usage
$WC_Product_CSV_Importer = new WC_Product_CSV_Importer(); $WC_Product_CSV_Importer->parse_relative_comma_field( $value );
- $value(string) (required)
- Field value.
WC_Product_CSV_Importer::parse_relative_comma_field() WC Product CSV Importer::parse relative comma field code WC 10.6.2
public function parse_relative_comma_field( $value ) {
if ( empty( $value ) ) {
return array();
}
return array_filter( array_map( array( $this, 'parse_relative_field' ), $this->explode_values( $value ) ) );
}