我有一个功能可以做到这一点......
function coefficient_display($coeff){
if ($coeff == 1){
return '';
} elseif ($coeff == -1){
return '-';
} else {
return $coeff;
}
}
似乎,如果你给它一个“格式化”的数字,它就会失败。为什么?
coefficient_display(1200)
给出1200。
coefficient_display('1200')
给出1200。
coefficient_display(1,200)
失败。