tengo el siguiente código que redondea mis cantidades al dólar más cercano:redondeo al más cercano 50 centavos
switch ($amazonResult['SalesRank']) {
case ($amazonResult['SalesRank'] < 1 || trim($amazonResult['SalesRank'])===''|| !isset($amazonResult['SalesRank']) || $amazonResult['SalesRank']=== null):
$Price=((float) $lowestAmazonPrice) * 0.05;
$payPrice = round($Price, 0); //to round the price up or down to the nearest $
break;
case ($amazonResult['SalesRank'] > 0 && $amazonResult['SalesRank'] <= 15000):
$Price=((float) $lowestAmazonPrice) * 0.20;
$payPrice = round($Price, 0); //to round the price up or down to the nearest $
break;
Entiendo que si uso redonda ($ Precio, 2); que tendré 2 decimales, pero ¿hay alguna forma de redondear a los 50 centavos más cercanos?
Gracias, que hizo el truco. – Jim