[PHP-DEV] Re: Target build location of CGI SAPI

2002-02-11 Thread Yasuo Ohgaki
Jason Greene wrote: > I noticed the CGI sapi still builds in the root build directory. Since > the CLI sapi is in place, shouldn't the cli be built in the root build > directory and the cgi in sapi/cgi? 0 for this. > > If not, shouldn't they then be consistent and both be built in their > corr

[PHP-DEV] php feature

2002-02-11 Thread knight
I mentioned a little while ago that being able to change the vars passed to your php page via array would be very cool. I know you can call posts, gets, ect. but if you were able to directly change the variables it could save allot of time e.g. with one var passed. "; PreviousFile[0]='I reall

Re: [PHP-DEV] New extension: stem

2002-02-11 Thread Sebastian Bergmann
J Smith wrote: > echo "German: aufeinanderschlügen -> " . stem("aufeinanderschlügen", > STEM_GERMAN) . "\n"; The 'ü' should be 'a'. Hm, just curious :-) -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift: http:/

Re: [PHP-DEV] FWD: possible bug in date() function

2002-02-11 Thread Yasuo Ohgaki
Sean R. Bright wrote: > The format specifiers are just place holders, they don't modify the > behavior of adjacent specifiers. 'iS' does not work. 'S' is tied > directly to the current day of the month, so the only thing that > makes sense while using 'S' is either 'd' or 'j' (i.e. 'dS' or 'jS').

RE: [PHP-DEV] FWD: possible bug in date() function

2002-02-11 Thread Sean R. Bright
The format specifiers are just place holders, they don't modify the behavior of adjacent specifiers. 'iS' does not work. 'S' is tied directly to the current day of the month, so the only thing that makes sense while using 'S' is either 'd' or 'j' (i.e. 'dS' or 'jS'). I suppose we could introduce

Re: [PHP-DEV] FWD: possible bug in date() function

2002-02-11 Thread Yasuo Ohgaki
Sean R. Bright wrote: > What? The original format string was: > > "H:i D, nS M Y" > > which is the part that makes no sense. He/She should be using: As I mentioned, it does not make sense to me also. Some people may want to use "nS" for some reason, though. BTW, since iS works, I think

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/msession msession.c

2002-02-11 Thread Yasuo Ohgaki
Jani Taskinen wrote: > Another thing is the ChangeLog / NEWS. PECL extensions should > have their own ChangeLog and NEWS files? Agreed. We need them for PECL. > > I'm not sure if this has been considered ever, but wouldn't > it be nice to have a release package select page on p

[PHP-DEV] Re: Rumours

2002-02-11 Thread Yasuo Ohgaki
Erik Barke wrote: > Hi guys, first time around, please be gentle :) > > We're considering using PHP for our new money-is-an-issue web site, > but people keep telling me PHP is a dead end, it's in fact a dying language. > > Is this just vicious rumour-mongering on behalf of Mo$oft? > > Cheers >

[PHP-DEV] Re: Rumours

2002-02-11 Thread Yasuo Ohgaki
Erik Barke wrote: > Hi guys, first time around, please be gentle :) > > We're considering using PHP for our new money-is-an-issue web site, > but people keep telling me PHP is a dead end, it's in fact a dying language. > > Is this just vicious rumour-mongering on behalf of Mo$oft? > > Cheers >

RE: [PHP-DEV] FWD: possible bug in date() function

2002-02-11 Thread Sean R. Bright
What? The original format string was: "H:i D, nS M Y" which is the part that makes no sense. He/She should be using: "H:i D, jS M Y" In other words, RTFM: http://www.php.net/date > -Original Message- > From: Yasuo Ohgaki [mailto:[EMAIL PROTECTED]] > Sent: Mo

Re: [PHP-DEV] FWD: possible bug in date() function

2002-02-11 Thread Jim Winstead
Yasuo Ohgaki <[EMAIL PROTECTED]> wrote: > Chris Newbill wrote: >> Ehh...from manual >> >> n - month without leading zeros; i.e. "1" to "12" >> >> So yeah it would print 2th. Cause today is the 10"th". > > The format does not make sense much, though. sure it does. the 'bug' reporter had a bogu

Re: [PHP-DEV] FWD: possible bug in date() function

2002-02-11 Thread Yasuo Ohgaki
Chris Newbill wrote: > Ehh...from manual > > n - month without leading zeros; i.e. "1" to "12" > > So yeah it would print 2th. Cause today is the 10"th". The format does not make sense much, though. I guess 1th, 2th are correct English now, instead of 1st, 2nd. ;) -- Yasuo Ohgaki > > -Chr

RE: [PHP-DEV] New extension: stem

2002-02-11 Thread James Cox
well, this definitely looks cool, from a language point of view. i would go for new_stem or such like, and expect the language to be determined as a variable. I hope this allows for more work on various language features... perhaps you'd want to spend time looking at what else is available. one

[PHP-DEV] New extension: stem

2002-02-11 Thread J Smith
Greetings. A few months ago, I mentioned that I had written a PHP extension that provided English language suffix stemming using a "Porter stemmer", an algorithm devised by Dr. Martin Porter for stripping the suffix (or suffixes) off of an English word. After a mention in the PHP weekly sum

Re: [PHP-DEV] Rumours

2002-02-11 Thread Jason Lotito
Dying?  Since when?  Haha, this is quite humorous (and not directed at you =)).   Erik, PHP is no where near dying, and in fact prospering quite nicely, and anyone who tells you otherwise doesn't know a thing.   For example, where I work, we work with PHP exclusively, except for a bit of Per

[PHP-DEV] Rumours

2002-02-11 Thread Erik Barke
Aaah, PHP it is, then.   Thanks guys :)   /erik - Original Message - From: Jason Lotito To: Erik Barke ; [EMAIL PROTECTED] Sent: Monday, February 11, 2002 1:12 PM Subject: Re: [PHP-DEV] Rumours Dying?  Since when?  Haha, this is quite humorous (and not dire

[PHP-DEV] Re: Dying?!?

2002-02-11 Thread cassio
Sorry, should be a reply to Erik Barke... "Cassio" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > ROFL Dying language?!? We will see, what language is dying first ASP > or PHP > > -- PHP Development Mailing List To unsu

[PHP-DEV] Dying?!?

2002-02-11 Thread cassio
ROFL Dying language?!? We will see, what language is dying first ASP or PHP -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Rumours

2002-02-11 Thread derick
Hello, On Mon, 11 Feb 2002, Erik Barke wrote: > Hi guys, first time around, please be gentle :) > > We're considering using PHP for our new money-is-an-issue web site, > but people keep telling me PHP is a dead end, it's in fact a dying language. Dying? Absolutely not. Work is being done on the

Re: [PHP-DEV] Rumours

2002-02-11 Thread Stig S. Bakken
On Mon, 2002-02-11 at 12:34, Erik Barke wrote: > Hi guys, first time around, please be gentle :) > > We're considering using PHP for our new money-is-an-issue web site, > but people keep telling me PHP is a dead end, it's in fact a dying language. > > Is this just vicious rumour-mongering on beh

[PHP-DEV] Rumours

2002-02-11 Thread Erik Barke
Hi guys, first time around, please be gentle :)We're considering using PHP for our new money-is-an-issue web site,but people keep telling me PHP is a dead end, it's in fact a dying language.Is this just vicious rumour-mongering on behalf of Mo$oft?Cheers/erik

[PHP-DEV] [MAILER-DAEMON@pb1.pair.com: failure notice]

2002-02-11 Thread Markus Fischer
I just got this reply. I probably missed how this should be handled now (sometimes it makes sense to reply via mail to bugs). So I've to manually change it to php-dev@ ? Or does it make sense to have a default Reply-To: to php-dev@? - Markus -- Please always Cc to me w