|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-11-26 14:00 UTC] rasmus at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Thu Jun 18 14:00:02 2026 UTC |
chomp function (like perl has): function chomp($String) { $TheEnd=strchr($String,"\n"); $Result=substr($String,0,$TheEnd-1); return $Result; }