3v4l.org

run code in 300+ PHP versions simultaneously
<?php $text_array = ['He needs to cultivate in order', 'to be at the fourth level of the', 'Martial Body Stage. Does he have inner energy?"', 'Everyone jeered, laughed, and taunted.', 'Qin Yun turned deaf ear to their taunts.', 'His eyes were filled with sincerity as he', 'looked at Yang Shiyue and said, "Teacher,', 'I only formed my elemental energy this morning.', 'I still not familiar with the control of', 'my elemental energy and inner energy."', 'After the empress heard the jeers from the', 'crowd, she let out a sigh of relief and', 'sneered, "This is only a little bit of', 'inner Qi that you forced out.', 'You have not yet stepped', 'into the fourth level', 'of the Martial Body realm and have no', 'chance of breaking through. embarrass yourself!']; function change_words_length($text, $numwords) { $words = explode(' ', implode(' ', $text)); $output = array(); foreach (array_chunk($words, $numwords) as $array) { $output[] = implode(' ', $array); } return $output; } print_r(change_words_length($text_array, 10)); print_r(change_words_length($text_array, 30));

preferences:
29.95 ms | 402 KiB | 5 Q