but it's not quite what I'm after
my array can vary in length / no of elements. I need to be able to select the 2nd element then each next element until I am 4 from the end.
$array1 = array("this", "is", "an", "extra", "long", "example", "for", "my", "string");
// I need to create a variable that contains just "is an extra long example"
$array2 = array("this", "is", "a", "really", "massive", "silly", "way", "to", "show", "an", "example", "of", "an", "extra", "long", "example", "for", "my", "string");
// I need to create a variable that contains just "is a really massive silly way to show an example of an extra long example"
Can you see how the variable always starts with the 2nd elements and always ends at the elements 4th from the end, regardless of the number of elements ?