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