PHP Math Package
<?php
// Materi Package Math
// == Ceil
// $result = ceil(1.6);
// echo $result;
// == Rand
// echo rand(0, 5);
// == Floor
// $result = floor(1.9);
// echo $result;
// == Abs (Absolut)
// $result = abs(-295.34);
// echo $result;
// == Pow
// $result = pow(2,3);
// echo $result;
// == Round
// $result = round(1.2);
// echo $result;
// == Max
// $result = max(2,7);
// echo $result;
?>INFO