Created
June 21, 2019 09:58
-
-
Save Electrica/41718773b252f5c2fd4344e0ddb6b408 to your computer and use it in GitHub Desktop.
Percent
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Считаем проценты | |
$percent = $old_price/100; | |
$result = $price/$percent; | |
$result = ceil(100-$result); | |
return $result; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment