PHP/String/chop
Версия от 10:37, 26 мая 2010; (обсуждение)
chop() function returns a string minus any ending whitespace and newlines.
Its syntax is: string chop (string str)
//Using chop() to remove unnecessary newlines:
<?
$header = "Table of Contents:\n\n";
$header = chop($header);
print $header;
?>