标签: php formatting
我正在尝试将117转换为11.7,但正在努力寻找可以使用的任何功能。
117
11.7
我尝试使用<?PHP echo "£". number_format($item['now_cost'], 2); ?>,但返回£117.00
<?PHP echo "£". number_format($item['now_cost'], 2); ?>
£117.00
有人可以帮忙吗?
答案 0 :(得分:0)
您的代码应为
<?php echo "£". number_format($item['now_cost'] / 10, 2); ?>