PHPリファレンス(ceil()、floor()、round())
上記より。
<?php print floor( 235.22 )."\n"; // 切捨て print ceil( 235.22)."\n"; // 切り下げ ?>
実行結果
235
236
追記
$a = 1.2; $up = (int)($a + 1); $down = (int)$a; echo $up . "\n"; echo $down . "\n";
こんなほうほうでもよろしいかと。
PHPリファレンス(ceil()、floor()、round())
上記より。
<?php print floor( 235.22 )."\n"; // 切捨て print ceil( 235.22)."\n"; // 切り下げ ?>
実行結果
235
236
追記
$a = 1.2; $up = (int)($a + 1); $down = (int)$a; echo $up . "\n"; echo $down . "\n";
こんなほうほうでもよろしいかと。