Quick actions

cmd+k|ctrl+k

Navigation

Languages

PHP Math Package

Snippet info

Language

Php

Visibility

public

Author

ubaidillah.hf

Created

2022-08-20T02:14:31.117487Z

Updated

2022-08-20T03:01:27.970608Z

<?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