Strings Php

    $string = "Goodbye, Perl!";
    $a = substr($string, 5, 5);
    $b = substr($string, 5, -1);
    $c = substr($string, 0, -7);
?>