Answers for "codeigniter round off function"

PHP
0

codeigniter round off function

// THIS METHOD ROUNDOFF THE PRICE
function roundoff($value) {
  $value = $value * 20;
  $near_int = round($value);
  $round = $near_int / 20;
  return $round;

}
Posted by: Guest on February-17-2022

Browse Popular Code Answers by Language