is_array is just for checking if $variable is an array. Use explode()-function. With count-function you can count how many there are in the array.
$combine = "book,pencil,pen";
$combine=explode(',',$combine);
$combine[0]; // value is now "book"
$combine[1]; // value is now "pencil"
$combine[2]; // value is now "pen"
$count=count($combine) // Count array