WC_Tax::round()
Round to precision.
Filter example: to return rounding to .5 cents you'd use:
function euro_5cent_rounding( $in ) {
return round( $in / 5, 2 ) * 5;
} add_filter( woocommerce_tax_round, 'euro_5cent_rounding' );
Метод класса: WC_Tax{}
Хуки из метода
Возвращает
float
.
Использование
$result = WC_Tax::round( $in );
- $in(float|int) (обязательный)
- Value to round.
Код WC_Tax::round() WC Tax::round WC 9.4.2
public static function round( $in ) { return apply_filters( 'woocommerce_tax_round', NumberUtil::round( $in, wc_get_rounding_precision() ), $in ); }