This repository has been archived by the owner on Oct 30, 2023. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add roundStep functionality, to help with stepSize
```php function roundStep($value, $stepSize = 0.1) { $precision = strlen(substr(strrchr(rtrim($value,'0'), '.'), 1)); return round((($value / $stepSize) | 0) * $stepSize, $precision); } ```
- Loading branch information