PREG_SPLIT_DELIM_CAPTURE PREG_SPLIT_NO_EMPTY preg_split():
<?php
$string = preg_split("/([^\s]*\s+[^\s]*\s+[^\s]*\s+[^\s]*\s+[^\s]*)\s+/", $string, PREG_SPLIT_DELIM_CAPTURE|PREG_SPLIT_NO_EMPTY);
array (
1 => 'There is something to type',
2 => 'here. This is an example',
3 => 'text',
)