substr
<?php
 $str 
"Fast String Manipulation";
 echo 
substr($str,0,4) . substr($str,-9);
?>
Output
Fastipulation