$filename = 'path/to/image.png';
$color = '255,255,255';
$img = imagecreatefrompng($filename);
$colors = explode(',', $color);
$remove = imagecolorallocate($img, $colors[0], $colors[1], $colors[2]);
imagecolortransparent($img, $remove);
imagepng($img, $filename);