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 th
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
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
When playing with PHP5 I tried the following code:
foreach (new DirectoryIterator('.') as $file) {
if (preg_match("/^\./", $file)){
continue;
}
print "$file\n";
}
the result was unexpected, but after an IRC session and reading the
manual all became clear.
My question is if the
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 $ar