Skip to content

Instantly share code, notes, and snippets.

@koreldan
koreldan / numberToColor
Created May 1, 2019 22:41 — forked from Ravaelles/numberToColor
PHP function that converts number from given range into a color from given gradient of multiple colors
// See example: https://image.prntscr.com/image/cTIv8JkLR7yWEQxVev9SyA.jpeg
function numberToColor($value, $min, $max, $gradientColors = null)
{
// Ensure value is in range
if ($value < $min) {
$value = $min;
}
if ($value > $max) {
$value = $max;