x
 
<!DOCTYPE html>
<html>
<body>
<?php
$x = "Hi, how are you?";
echo substr($x, 5, -3);
?> 
</body>
</html>