PHP/String/chop — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 07:07, 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;
?>