Strings Php

Its syntax is: string chop (string str)
//Using chop() to remove unnecessary newlines:
    $header = "Table of Contents:\n\n";
    $header = chop($header);
    print $header;
?>