[PHP-DEV] Engine 2 mailing list archive

2001-12-30 Thread Andi Gutmans
Hey, I can't remember who asked me about a mailing list archive for the Zend Engine 2 mailing list, but in any case, we've put one up at http://www.zend.com/lists.php. Enjoy! Andi -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

Re: [PHP-DEV] Engine 2

2001-08-15 Thread Cynic
Fresh tree doesn't build w/ ZE2: zend_variables.c: In function `zval_persist': zend_variables.c:155: structure has no member named `properties' zend_variables.c:156: structure has no member named `properties' *** Error code 1 Stop in /usr/local/src/php4/Zend. *** Error code 1 Stop in /usr/local

Re: [PHP-DEV] Engine 2

2001-08-10 Thread Andi Gutmans
By the way, one of the things that interests me is exactly how much this change breaks people's code. My guess is that it won't break most people's apps. In any case, there will probably be a compat mode where the old copying is forced. Andi At 05:31 PM 8/10/2001 +0300, Heikki Korpela wrote:

Re: [PHP-DEV] Engine 2

2001-08-10 Thread Andi Gutmans
At 05:31 PM 8/10/2001 +0300, Heikki Korpela wrote: >On Fri, 10 Aug 2001, Andi Gutmans wrote: > > > I'm also > > interested in how many scripts are actually broken by the fact that objects > > are not copied when sent to functions by value and so on. > >Did I get this right: > >function func1($obje

Re: [PHP-DEV] Engine 2

2001-08-10 Thread Heikki Korpela
On Fri, 10 Aug 2001, Andi Gutmans wrote: > I'm also > interested in how many scripts are actually broken by the fact that objects > are not copied when sent to functions by value and so on. Did I get this right: foo = 'bar'; } function func2() { $object = new StdClass; $object-

[PHP-DEV] Engine 2

2001-08-10 Thread Andi Gutmans
Hey, The Engine 2 CVS pretty much implements the first step of the new object model. Objects are now handles which reference the same object and $obj->method1()->method2() is supported now. Quite a few places in PHP that use objects like call_user_function() might still not work though. If any