<?php

$str="a,b,c,d-e,f,g,h";
$ex = array_map(function ($s) {
	   return explode(",", $s);
	}, explode("-", $str));
print_r($ex);
