$quote = "299,285,310,0,0,0,0,15:20:03";
$quote1 = substr($quote, 0,2); // returns 299
$qary = explode("," , $quote);
//returns an array like this: ["299","285","310","0","0","0","0","15:20:03"];
$quote1 = $qary[1]; // returns: "299";
$qouteLast = $qary[ sizeof($qary)-1 ]; // return: "15:20:03"
//to further break down last three:
$arynew = explode(":",$quoteLast); // returns: ["15","20","03"];