[PHP-DEV] CVS update: php3 From: rasmus (php-dev <email protected>)
Date: 05/31/98

Date: Sunday May 31, 1998 @ 17:16
Author: rasmus

Update of /repository/php3
In directory asf:/tmp/cvs-serv29521

Modified Files:
        ChangeLog
Log Message:
Take Jim's advice and make trim() strip whitespace from both ends and
create an ltrim() function that just strips at the start of the string.
Also add rtrim() alias to chop() for completeness sake.

Index: php3/ChangeLog
diff -c php3/ChangeLog:1.361 php3/ChangeLog:1.362
*** php3/ChangeLog:1.361 Sun May 31 09:15:34 1998
--- php3/ChangeLog Sun May 31 17:16:53 1998
***************
*** 1,7 ****
  PHP 3.0 CHANGE LOG ChangeLog
  |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
  May ?? Version 3.0
! - Add trim function (similar to chop, except it strips at the beginning)
  - Added 2 optional args to fsockopen function - errno and errstr
  - Fixed bug in split() function related to leading matches
  - Fixed problem in error_log() function (thanks to Jan Legenhausen)
--- 1,9 ----
  PHP 3.0 CHANGE LOG ChangeLog
  |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
  May ?? Version 3.0
! - Add ltrim function (strips only at the start of string)
! - Add rtrim as an alias to chop() for completeness sake
! - Add trim function (similar to chop, except it strips at the start as well)
  - Added 2 optional args to fsockopen function - errno and errstr
  - Fixed bug in split() function related to leading matches
  - Fixed problem in error_log() function (thanks to Jan Legenhausen)