price custom function
Copy Below Code
View As A Text File
Show Text Only
Show API
Edit Code
static function price($number, $showCurrencySymbol = true) {
if ($number == intval($number)) {
return ($showCurrencySymbol ? '$':'') . number_format($number, 0); // Format without decimal places
} else {
return ($showCurrencySymbol ? '$':'') . number_format($number, 2, '.', ',');
}
}