Advertisement
Guest User

Untitled

a guest
Nov 13th, 2021
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. function iwpt_increase_price_by_90($price = '')
  2. {
  3.     $price = floatval($price);
  4.     if ($price <= 0) {
  5.         return $price;
  6.     }
  7.  
  8.     $price = $price + ($price * 0.9);
  9.     return $price;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement