标签: php math
如果整数大于或等于1,我想从整数中减去1。我使用以下方法做到这一点:
$calc = ( $int >= 1 ) ? ( $int - 1) : $int;
是否有较短的方法来完成这类计算?