Codeigniter Round Off Function

[Solved] Codeigniter Round Off Function | Php Frameworks Codeigniter - Code Explorer | yomemimo.com
Question : codeigniter round off function

Answered by : navjot-singh-j6nzmskv4s4h

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

Source : | Last Update : Thu, 24 Feb 22

Answers related to codeigniter round off function

Code Explorer Popular Question For Php Frameworks Codeigniter