WC_CLI_REST_Command::limit_item_to_fields()private staticWC 1.0

Reduce an item to specific fields.

Method of the class: WC_CLI_REST_Command{}

No Hooks.

Return

Array.

Usage

$result = WC_CLI_REST_Command::limit_item_to_fields( $item, $fields );
$item(array) (required)
Item to reduce.
$fields(array) (required)
Fields to keep.

WC_CLI_REST_Command::limit_item_to_fields() code WC 8.6.1

private static function limit_item_to_fields( $item, $fields ) {
	if ( empty( $fields ) ) {
		return $item;
	}
	if ( is_string( $fields ) ) {
		$fields = explode( ',', $fields );
	}
	foreach ( $item as $i => $field ) {
		if ( ! in_array( $i, $fields, true ) ) {
			unset( $item[ $i ] );
		}
	}
	return $item;
}