php中float轉int的方法
使用round(x,prec)方法
<?php echo(round(0.60)); echo(round(0.50)); echo(round(0.49)); echo(round(-4.40)); echo(round(-4.60)); 輸出: 1 1 0 -4 -5