matthewbaggett / clamp
PHP clamp function to clamp a number between a minimum and a maximum.
v1.1
2018-02-07 14:50 UTC
Requires (Dev)
- phpunit/phpunit: ^4.8
- satooshi/php-coveralls: ^2.0.0
This package is auto-updated.
Last update: 2026-02-24 10:36:04 UTC
README
PHP mathematical "Clamp" function. It clamps a variable between two numbers. Simple.
Usage:
$value = clamp( $min, // The minimum you will accept $max, // The maximum you can take $value // The value you wish to clamp );
Why?
I got sick of writing what should be a core PHP function into a Util class, only to discover other people populating that util class with other nonsense that really shouldn't be in a Util class.