| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | - Please don't use strcmp() and friends in Zend but only the mem* | Andi Gutmans | 2002-02-02 | 1 | -1/+1 |
* | Fix a warning. | Sebastian Bergmann | 2002-02-02 | 1 | -1/+1 |
* | - Nice catch by Derick. GINIT is dead. | Andi Gutmans | 2002-02-02 | 1 | -2/+0 |
* | MFZE1: is_a() | Sebastian Bergmann | 2002-02-01 | 1 | -11/+30 |
* | MFZE1: define a couple of macros under win32. (Patch By: Jon Parise <jon@php.... | Sebastian Bergmann | 2002-01-27 | 1 | -0/+2 |
* | - First destructor hell fix. There was a situation where an object's | Andi Gutmans | 2002-01-25 | 5 | -8/+31 |
* | - Fix a bug reported by Sebastian with indirect class names not working. | Andi Gutmans | 2002-01-22 | 1 | -10/+20 |
* | - Improve performance of functions that use $GLOBALS[] | Andi Gutmans | 2002-01-20 | 6 | -32/+14 |
* | MFZE1 | Thies C. Arntzen | 2002-01-19 | 1 | -1/+1 |
* | - Fix crash bug in call_user_function_ex(). Thanks to Sebastian for the | Andi Gutmans | 2002-01-14 | 1 | -2/+5 |
* | Update Exceptions example. | Sebastian Bergmann | 2002-01-14 | 1 | -14/+15 |
* | - Change exception handling to use the Java-like catch(MyException $exception) | Andi Gutmans | 2002-01-13 | 5 | -19/+43 |
* | - MFZE1 | Andi Gutmans | 2002-01-13 | 1 | -0/+1 |
* | - Output error when there's an uncaught exception (by Timm Friebe) | Andi Gutmans | 2002-01-06 | 1 | -0/+1 |
* | - Make sure $this is passed on to methods | Andi Gutmans | 2002-01-06 | 1 | -4/+12 |
* | Happy New Year. | Sebastian Bergmann | 2002-01-06 | 56 | -57/+57 |
* | - Small fix | Andi Gutmans | 2002-01-05 | 1 | -1/+2 |
* | - Allow passing of $this as function arguments. | Andi Gutmans | 2002-01-05 | 3 | -22/+44 |
* | - Significantly improve the performance of method calls and $this->member | Andi Gutmans | 2002-01-05 | 5 | -32/+82 |
* | - Improve performance of indirect-referenced function calls | Andi Gutmans | 2002-01-04 | 1 | -10/+25 |
* | - Nuke C++ comments | Andi Gutmans | 2002-01-04 | 1 | -19/+3 |
* | - Separate other kinds of function calls too. | Andi Gutmans | 2002-01-04 | 3 | -81/+150 |
* | - Start splitting up different kinds of function calls into different | Andi Gutmans | 2002-01-04 | 3 | -26/+30 |
* | - MFZE1 for exit fix, exposing current function name in error messages and | Derick Rethans | 2002-01-03 | 4 | -6/+8 |
* | Consistency. | Sebastian Bergmann | 2001-12-31 | 1 | -2/+1 |
* | - Add example of default argument for argument passed by-ref | Andi Gutmans | 2001-12-31 | 1 | -0/+14 |
* | Typo. | Sebastian Bergmann | 2001-12-30 | 1 | -1/+1 |
* | - #define to help #ifdef stuff in PHP sources to make them work w/ ZE1 and | Andi Gutmans | 2001-12-29 | 1 | -0/+2 |
* | - A few clarifications | Andi Gutmans | 2001-12-29 | 1 | -6/+8 |
* | Integrate Andi's examples and some notes by Stig. | Sebastian Bergmann | 2001-12-29 | 1 | -58/+323 |
* | Update Exceptions example. | Sebastian Bergmann | 2001-12-29 | 1 | -11/+26 |
* | - Fix some case insensitivity stuff in respect to classes | Andi Gutmans | 2001-12-28 | 3 | -9/+11 |
* | - Support default arguments for reference parameters | Andi Gutmans | 2001-12-28 | 2 | -8/+10 |
* | - Wasn't adding the lower case version of the class name to the hash | Andi Gutmans | 2001-12-28 | 1 | -1/+1 |
* | - Use two underscores for __construct(), __clone and friends... | Andi Gutmans | 2001-12-27 | 2 | -10/+14 |
* | - Only check refcount of object if the destructor was called. | Andi Gutmans | 2001-12-27 | 1 | -13/+19 |
* | - Experimental support for destructors. We need to see if destructors | Andi Gutmans | 2001-12-27 | 6 | -9/+67 |
* | - Support parent:: again | Andi Gutmans | 2001-12-27 | 3 | -12/+18 |
* | - Support unified constructor name _construct() | Andi Gutmans | 2001-12-27 | 1 | -0/+2 |
* | - Fix scoping issue. The following works now: | Andi Gutmans | 2001-12-26 | 2 | -0/+10 |
* | - Print out object id for easier debugging | Andi Gutmans | 2001-12-26 | 1 | -0/+5 |
* | - Pretty much finish _clone() support | Andi Gutmans | 2001-12-26 | 5 | -3/+53 |
* | - Initial support for _clone() | Andi Gutmans | 2001-12-26 | 4 | -5/+41 |
* | - Start fixing the parsing rules so that function and method calls | Andi Gutmans | 2001-12-26 | 2 | -22/+22 |
* | - Fix crash correctly. | Andi Gutmans | 2001-12-26 | 1 | -1/+4 |
* | - Revert delete syntax patch | Andi Gutmans | 2001-12-25 | 1 | -1/+1 |
* | - Fix a crash (not a thorough fix). | Andi Gutmans | 2001-12-25 | 2 | -1/+3 |
* | - Fixed bug where global functions weren't called if they didn't exist | Andi Gutmans | 2001-12-24 | 1 | -4/+11 |
* | - Fix a bug where function's didn't work anymore in multi-threaded | Andi Gutmans | 2001-12-23 | 1 | -2/+4 |
* | - Add initial capability of defining nested classes as class foo::bar | Andi Gutmans | 2001-12-22 | 3 | -2/+83 |