<?php $string = 'this is a returned string'; $words = explode(" ", $string ); $last_two_word = implode(' ',array_splice($words, -2 )); $except_last_two = implode(' ', $words); $expected = '<p>'.$except_last_two.' <span class="someclass">'.$last_two_word.'</span></p>'; echo $expected; ?>
You have javascript disabled. You will not be able to edit any code.