The tag is: array_slice
array_slice
<?php $first3word = 'WWE is the best sports'; $first3word = implode(' ', array_slice(explode(' ', $first3word), 0, 3)); echo $first3word; ?>