Skip to content

Instantly share code, notes, and snippets.

@gitllermopalafox
Created August 30, 2021 03:51
Show Gist options
  • Save gitllermopalafox/5b1bb942bfc916270a17ee83f7d7ec4f to your computer and use it in GitHub Desktop.
Save gitllermopalafox/5b1bb942bfc916270a17ee83f7d7ec4f to your computer and use it in GitHub Desktop.
Calculate price for 2x1 promotions with PHP
$price = 100;
$products = 9;
echo $price * $products/2 + ($products&1 ? $price/2 : 0); // 500
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment