Skip to content

Instantly share code, notes, and snippets.

@ideesimple
Created December 2, 2010 08:52
Show Gist options
  • Save ideesimple/725005 to your computer and use it in GitHub Desktop.
Save ideesimple/725005 to your computer and use it in GitHub Desktop.
Multiplier prix par un nombre via snippet
<?php
//[[*Price:mpyfs=`1.196`]]
$output = '';
if (!empty($input) && is_numeric($input) && !empty($options) && is_numeric($options)) {
/* Multiply & Round the Float to 2 Digits */
$output = round($input * $options, 2);
}
else
$output = $input;
return $output;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment