function formatProductRating($rating) {
// Check if the rating is a whole number (integer)
if (floor($rating) == $rating) {
// If it's a whole number, just return it as is
return (int)$rating;
} else {
// If it's not a whole number, format it with one decimal place
return number_format($rating, 1);
}
}