Guest User

Untitled

a guest
Jul 16th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. //[[*Price:mpyfs=`1.196`]]
  3.  
  4. $output = '';
  5.  
  6. if (!empty($input) && is_numeric($input) && !empty($options) && is_numeric($options)) {
  7. /* Multiply & Round the Float to 2 Digits */
  8. $output = round($input * $options, 2);
  9. }
  10. else
  11. $output = $input;
  12.  
  13. return $output;
  14. ?>
Add Comment
Please, Sign In to add comment