x
 
<!DOCTYPE html>
<html>
<body>
<?php
$x = "Hello World!";
echo substr($x, -5, 3);
?> 
</body>
</html>