Skip to content

Instantly share code, notes, and snippets.

@Nex4rius
Nex4rius / numberToColor.php
Last active April 25, 2022 20:39 — forked from Ravaelles/numberToColor
PHP function that converts number from given range into a color from given gradient of multiple colors
<?php
// 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) {