HTML beginner |
|
Uit de User Contributed Notes van round() om af te ronden op halven
<?php
$actual_value = 3.45; // 3.45
$temp1 = $actual_value * 2; // 6.9
$temp2 = round($temp1, 0); // 7
$half_round = $temp2 / 2 // 3.5
?>
<?php $actual_value = 3.45; // 3.45 $temp1 = $actual_value * 2; // 6.9 $temp2 = round($temp1, 0); // 7 $half_round = $temp2 / 2 // 3.5 ?>
En eigenlijk wat Fenrir al zei |