除非必要,价格不带小数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了除非必要,价格不带小数相关的知识,希望对你有一定的参考价值。
Will strip off the decimals of a number (price) unless they are necessary.
<?php // price(15) returns $15 // price(14.95) returns $14.95 function price($price, $decimals=null, $sign='$') { if ($decimals !== null) { } else { } } return $sign.$price; } else { } } ?>
以上是关于除非必要,价格不带小数的主要内容,如果未能解决你的问题,请参考以下文章
为啥我的 C 代码片段不起作用?简化版可以。为 unsigned long long 传递不带 VA_ARGS 的 args