<?php $string = "This is my test case for an example."; $result = explode(' ', $string); foreach ($result as $i => $word) { if (isset($result[$i + 1])) { $result[$i] .= " {$result[$i + 1]}"; } else { unset($result[$i]); } } var_export($result);
You have javascript disabled. You will not be able to edit any code.