Re: [PHP-DEV] Re: PEAR::Date broken (Was: [PHP-CVS] cvs: php-src(PHP_5_2) /ext/date php_date.c php_date.h)

2006-07-18 Thread Aaron Wormus
Steph Fox wrote: What gazzillions of applications are going to get broken? Can you name one outside PEAR? I'm sure everyone realizes this, but it's not just PEAR, it's any application that uses the Date class. The Date class can be renamed, but that won't automatically fix everyone who uses

Re: [PHP-DEV] PHP 6.0 Wishlist

2005-08-14 Thread Aaron Wormus
Rasmus Lerdorf wrote: Since we are breaking a lot of stuff in 6.0, at least with Unicode_semantics=On I am wondering if it may not be time to break some more stuff and do a bit of spring cleaning. It would mean many apps would need some work to work on PHP 6, but at the same time I think it is

Re: [PHP-DEV] php_fork();

2004-11-14 Thread Aaron Wormus
Derick Rethans wrote: On Sun, 14 Nov 2004, [EMAIL PROTECTED] wrote: Can't it be emulated? The *concept* doesn't exist on Windows, so no. Perl emulates it pretty nicely on windows http://www.perldoc.com/perl5.8.4/pod/perlfork.html Aaron

[PHP-DEV] Directoryiterator / preg_match behavior

2004-09-01 Thread Aaron Wormus
When playing with PHP5 I tried the following code: foreach (new DirectoryIterator('.') as $file) { if (preg_match(/^\./, $file)){ continue; } print a href='$file'$file/abr /\n; } the result was unexpected, but after an IRC session and reading the manual all became clear. My

[PHP-DEV] PHP -R STDIN chomping line ends

2004-05-04 Thread Aaron Wormus
Greetings! I've been exploring the work done on the PHP CLI sapi, and am impressed with the new features that are in PHP 5. One thing that I am a bit troubled about is the behaviour of the -R switch in that it removes the trailing \n and \r line end characters when it delivers the line to