Advertisement
GarryLaly

Function Bulatkan Angka (Dinamis) by Gdjnk Birowo

Mar 13th, 2014
695
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. <?php
  2. function bulatkan_angka($ke, $num) {
  3. return round(substr_replace($num, '.', $ke, 0)).str_repeat('0',strpos($num.'.','.')-$ke);
  4. }
  5. echo bulatkan_angka(4, 8161824.6);
  6. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement