Skip to content

Instantly share code, notes, and snippets.

@deyvin
Last active January 4, 2016 03:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deyvin/8563699 to your computer and use it in GitHub Desktop.
Save deyvin/8563699 to your computer and use it in GitHub Desktop.
Como chegar a um valor de acréscimo aplicando um percentual de desconto para chegar ao valor fixo.
<?php
$valor_desejado = 500;
$percentual = 20;
echo ($valor_desejado * 100) / (100 − $percentual);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment