$string = "
8
00:00:45,879 --> 00:00:50,680
- Oh! Just leave me in the car with the window open a crack.
- That's the plan.
9
00:00:50,784 --> 00:00:54,117
I think it's nice we're doing something
Maggie will enjoy for once.
10
00:00:54,220 --> 00:00:58,350
Besides, I'm sure Storytown Village
is also fun for everyone...";
$lines = explode( "\n", $str);
for( $i = 0, $ii = count( $lines); $i < $ii; $i += 5) {
$num = trim( $lines[ $i ]);
list( $line2a, $line2b) = explode( ' --> ', $lines[ $i + 1]);
list( $time1, $val1) = explode( ',', $line2a);
list( $time2, $val2) = explode( ',', $line2b);
$text1 = $lines[ $i + 2];
$text2 = $lines[ $i + 3];
echo "$num $time1 $val1 $time2 $val2\n$text1\n$text2\n\n";
}
?>