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