RE: [PHP] Chomp, Chomp, Chomp

2003-06-23 Thread Dan Joseph
: Friday, June 20, 2003 6:38 PM To: PHP General Subject: [PHP] Chomp, Chomp, Chomp Does anyone have a piece of code that emulates a Perl 'Chomp' function? I need one. Thanks in advance!! Robin E. Kopetzky Black Mesa Computers/Internet Services www.blackmesa-isp.net -- PHP General

[PHP] Chomp, Chomp, Chomp

2003-06-20 Thread Sparky Kopetzky
Does anyone have a piece of code that emulates a Perl 'Chomp' function? I need one. Thanks in advance!! Robin E. Kopetzky Black Mesa Computers/Internet Services www.blackmesa-isp.net

Re: [PHP] Chomp, Chomp, Chomp

2003-06-20 Thread Sparky Kopetzky
: Friday, June 20, 2003 16:47 Subject: Re: [PHP] Chomp, Chomp, Chomp On Fri, 2003-06-20 at 15:37, Sparky Kopetzky wrote: Does anyone have a piece of code that emulates a Perl 'Chomp' function? I need one. Thanks in advance!! Robin E. Kopetzky Black Mesa Computers/Internet Services

Re: [PHP] Chomp, Chomp, Chomp

2003-06-20 Thread Lars Torben Wilson
On Fri, 2003-06-20 at 15:37, Sparky Kopetzky wrote: Does anyone have a piece of code that emulates a Perl 'Chomp' function? I need one. Thanks in advance!! Robin E. Kopetzky Black Mesa Computers/Internet Services www.blackmesa-isp.net This should do it for you: http://www.php.net/rtrim

Re: [PHP] Chomp, Chomp, Chomp

2003-06-20 Thread Lars Torben Wilson
PROTECTED] Sent: Friday, June 20, 2003 16:47 Subject: Re: [PHP] Chomp, Chomp, Chomp On Fri, 2003-06-20 at 15:37, Sparky Kopetzky wrote: Does anyone have a piece of code that emulates a Perl 'Chomp' function? I need one. Thanks in advance!! Robin E. Kopetzky Black Mesa Computers

RE: [PHP] Chomp, Chomp, Chomp

2003-06-20 Thread Aaron Axelsen
- -Original Message- From: Lars Torben Wilson [mailto:[EMAIL PROTECTED] Sent: Friday, June 20, 2003 6:00 PM To: Sparky Kopetzky Cc: PHP General Subject: Re: [PHP] Chomp, Chomp, Chomp On Fri, 2003-06-20 at 15:47, Sparky Kopetzky wrote: I looked at the documentation on rtrim. It trims ALL

RE: [PHP] Chomp, Chomp, Chomp

2003-06-20 Thread Lars Torben Wilson
On Fri, 2003-06-20 at 16:16, Aaron Axelsen wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The php chop function is suppose to act like the perl chomp. No, chop() is an alias for rtrim(), and is identical in every way (save for its name, of course...) http://www.php.net/chop