You don't need regular expressions, above is a JSON object notation, you need to do php json_decode
on it, get the values, which will be an associative array:
$str='[ { "id": "715320" ,"t" : "500268" ,"e" : "BOM" ,"l" : "15.55" ,"l_cur" : "Rs.15.55"
,"ltt":"3:59PM IST" ,"lt" : "Sep 9, 3:59PM IST" ,"c" : "+1.69" ,"cp" : "12.19"
,"ccol" : "chg" } ] ';
$data=json_decode($str, true); //true to get the data as associative arrays rather than objects.
$data = $data[0];//since it's an object inside an array
from now on it's recommended keeping this as an associative array, and access objects using array accessors:
$id = $data['id'];
PHP's extract
function can be used to extract those values into current context, but that is dangerous, sticking to the accessing the array directly is a better idea.