Answers for "php round to price format"

PHP
0

php number format without rounding

function cutNum($num, $precision = 2) {
    return floor($num) . substr(str_replace(floor($num), '', $num), 0, $precision + 1);
}
Posted by: Guest on August-31-2020
0

display rounded price get_price php

<?php echo wc_price( round($product->get_price() * 1.04) ); ?>
Posted by: Guest on May-21-2020

Browse Popular Code Answers by Language