Skip to content

Instantly share code, notes, and snippets.

@Electrica
Created June 21, 2019 09:58
Show Gist options
  • Save Electrica/41718773b252f5c2fd4344e0ddb6b408 to your computer and use it in GitHub Desktop.
Save Electrica/41718773b252f5c2fd4344e0ddb6b408 to your computer and use it in GitHub Desktop.
Percent
<?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