Strings Php

    $mystring = "Hello World!"; 
    echo $mystring . ""; 
    echo substr ($mystring,0,5);
?>