PHPExcel : background cell color, ou comment changer la couleur de fond de vos cellule dans un fichier Excel

Petit article juste pour rappeler comment changer la couleur de fond d’une cellule dans un fichier Excel avec PHPExcel.
ici, on pose un background blanc à la cellule :
$sheet->getStyle('A1')
->applyFromArray(
array( 'fill' =>
array( 'type' => PHPExcel_Style_Fill::FILL_SOLID, 'color' =>
array('rgb' => 'FF0000')
)
)
);
extrait de : cette discussion