wc_trim_zeros()WC 1.0

Trim trailing zeros off prices.

No Hooks.

Return

String.

Usage

wc_trim_zeros( $price );
$price(string|float|int) (required)
Price.

wc_trim_zeros() code WC 8.7.0

function wc_trim_zeros( $price ) {
	return preg_replace( '/' . preg_quote( wc_get_price_decimal_separator(), '/' ) . '0++$/', '', $price ?? '' );
}