<?php

$rgb = "80, 120, 150";

function getColor($colors){
	$redGreenBlue=array();
$var = preg_split('/[\s, ]+/', $colors);

foreach($var as $value){
	$redGreenBlue[] = $value;
}

return $redGreenBlue;
}

var_dump(getColor($rgb));