sprintf()'s built-in hex-to-decimal conversion with the %x format character
function build_color($red, $green, $blue) { return sprintf('#%02x%02x%02x', $red, $green, $blue); }