Como posso obter os últimos 7 caracteres de uma string PHP?

Como eu iria pegar os últimos 7 caracteres da string abaixo?

Por exemplo:

<code>$dynamicstring = "2490slkj409slk5409els";
$newstring = some_function($dynamicstring);
echo "The new string is: " . $newstring;
</code>

Qual exibiria:

<code>The new string is: 5409els
</code>

questionAnswers(4)

yourAnswerToTheQuestion