[PHP-DEV] CVS Account Request: onixdesign

2004-02-23 Thread sazbo andy
making web pages -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Static weirdness..

2004-02-23 Thread Wez Furlong
Please drop this thread; we're not changing the behaviour of static. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Static weirdness..

2004-02-23 Thread Josh Fuhs
Quoting Marcus Boerger <[EMAIL PROTECTED]>: > In fact it may be related. As i said before it is one of the ways to get to > a class. > The class is related to the object. The method is related to the class. Is the method related to the object? It is not. There are many indirect ways to get to a

Re: [PHP-DEV] Re: Static weirdness..

2004-02-23 Thread Marcus Boerger
Hello Josh, Sunday, February 22, 2004, 6:30:38 AM, you wrote: > If I'm not mistaken, Java does not allow calls to static methods via object > instances. It simply doesn't make sense to couple the unecessary object instance > into a method call in which it has absolutely no bearing. > If the obje

Re: [PHP-DEV] Re: [PHP-DOC] Re: [PHP-DEV] Migration Appendice

2004-02-23 Thread Marcus Boerger
Hello Gabor, Monday, February 23, 2004, 7:49:01 PM, you wrote: >> Paragraph: Classes must be declared before used >> is no longer true. For most cases this is allowed now. > What are those cases when this will be a problem? Having "most cases" in > the documentation without an explanation would

Re: [PHP-DEV] Migration Appendice

2004-02-23 Thread Marcus Boerger
Hello Marcus, Monday, February 23, 2004, 6:42:06 PM, you wrote: > Hello Nuno, > Paragraph: Classes must be declared before used > is no longer true. For most cases this is allowed now. > Other notes: ext/domxml is replaced by ext/dom which is w3c dom > compliant. ext/tidy was added to the defau

[PHP-DEV] Re: [PHP-DOC] Re: [PHP-DEV] Migration Appendice

2004-02-23 Thread Gabor Hojtsy
Paragraph: Classes must be declared before used is no longer true. For most cases this is allowed now. What are those cases when this will be a problem? Having "most cases" in the documentation without an explanation would be bad practice IMHO... Goba -- PHP Internals - PHP Runtime Development M

Re: [PHP-DEV] Migration Appendice

2004-02-23 Thread Marcus Boerger
Hello Nuno, Paragraph: Classes must be declared before used is no longer true. For most cases this is allowed now. Other notes: ext/domxml is replaced by ext/dom which is w3c dom compliant. ext/tidy was added to the default distribution and its method names were changed to studlyCaps convention.

Re: [PHP-DEV] Re: [PHP-DOC] Migration Appendice

2004-02-23 Thread Wez Furlong
I'll also do up some notes on COM when I return from the next conference (well, actually write some real docs, since what we have now it pretty useless). --Wez. - Original Message - From: "Gabor Hojtsy" <[EMAIL PROTECTED]> To: "Nuno Lopes" <[EMAIL PROTECTED]> Cc: "PHPdev" <[EMAIL PROTECT

[PHP-DEV] Re: [PHP-DOC] Migration Appendice

2004-02-23 Thread Gabor Hojtsy
Today I've finished writing the 'Migrating from PHP 4 to PHP 5' appendice. I would like you to review it to check if something is missing or incorrect. As the on-line version is outdated, use livedocs at: http://docs.php.net/en/migration5.html Seems to be all right. Would be nice to link to places

[PHP-DEV] Migration Appendice

2004-02-23 Thread Nuno Lopes
Hi, Today I've finished writing the 'Migrating from PHP 4 to PHP 5' appendice. I would like you to review it to check if something is missing or incorrect. As the on-line version is outdated, use livedocs at: http://docs.php.net/en/migration5.html thanks, Nuno -- PHP Internals - PHP Runtime D

[PHP-DEV] [PATCH] Bug #26005

2004-02-23 Thread Jaroslav Snajdr
Hello, here is a patch for bug #26005 - random crash in session module. I analyzed the bug and posted a solution in Bugzilla more than 2 month ago and the bugfix is not incorporated yet. Jarda Snajdr *** php-4.3.4/ext/session/session.c Wed Oct 8 12:25:39 2003 --- php-4.3.4-n/ext/session/s

Re: [PHP-DEV] Re: Static weirdness..

2004-02-23 Thread Hartmut Holzgraefe
Josh Fuhs wrote: Quoting Josh Fuhs <[EMAIL PROTECTED]>: If I'm not mistaken, Java does not allow calls to static methods via object instances. Sorry, I retract this. Someone just showed me an example of it. But it still seems like a bad practice. So why? as i stated before the only difference betw

Re: [PHP-DEV] snaps not compiling

2004-02-23 Thread Christian Stocker
Hi this was fixed one hour ago (or change to libxml2 2.6 instead of 2.5) chregu On 2/23/04 10:54 AM, Nuno Lopes wrote: snaps.php.net is not compiling PHP 5 for windows. From http://snaps.php.net/win32/snapshot.log: compat.c ext\xml\compat.c(272) : error C2078: too many initializers ext\xml\comp

[PHP-DEV] snaps not compiling

2004-02-23 Thread Nuno Lopes
snaps.php.net is not compiling PHP 5 for windows. >From http://snaps.php.net/win32/snapshot.log: compat.c ext\xml\compat.c(272) : error C2078: too many initializers ext\xml\compat.c(317) : error C2039: 'sax2' : is not a member of '_xmlParserCtxt' ..\php_build\include\libxml/parser.h(161)

Re: [PHP-DEV] instanceof has higher precedence than casts

2004-02-23 Thread Andi Gutmans
Applied. Thanks, Andi At 15:59 16/02/2004 +0100, Jan Lehnardt wrote: Hi, some dude on IRC found out that php -r 'var_export((object)1 instanceof stdClass);'; results in class stdClass { public $scalar = false; } IMHO it should just return true. The ZEND_ENGINE file doesn't state anything about t