From: <bin...@li...> - 2001-10-16 05:17:17
|
hi all, looking through this zend engine 2 doc... it's exciting. I think we'll see the engine speed up even more (hmm, absolute power corrupts absolutely) there's some cool stuff, and some things to note: -most it not all of the base classes should be changed once the engine is out and happy: -destructors! -Major change: (things won't break, but we should do this as soon as the engine is out).. constructors are no longer defaulted to the ClassName() method: there will be a special method name: __construct(); We might consider making modules even more simple: __construct() and __destruct() as the standard. -if they implement private vars, we should analyze the classes and convert vars that should be private. -same with static vars. -our error handling will be really, really different. I didn't know they were introducing try...catch until Andi mentioned it... so this will change the way we deal with error handling at the very low level. This doesn't have any impact yet, and we can continue on doing things as we are... but at the same time we'll have access to more powerful tools in the future :) _alex |