You thought right. $option is an array in which you have put the list values before.
For example you have the weekdays:
$weekdays='Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday';
// Explode them to array
$option=explode(',',$weekdays);
Now you would have $option[0] as 'Monday', $option[1] as 'Tuesday'... and so on.