Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | - Revert one of the changes because it might be before the memory | Andi Gutmans | 2001-12-01 | 1 | -5/+2 | |
| | | | | | - manager has started. | |||||
* | - Use alloca() when possible. | Andi Gutmans | 2001-12-01 | 1 | -2/+5 | |
| | ||||||
* | - Initial support for class constants. There are still a few semantic | Andi Gutmans | 2001-11-30 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | - issues which need to be looked into but basically it seems to work. - Example: <?php class foo { const hey = "hello"; } print foo::hey; ?> | |||||
* | - Support static members. The following script works: | Andi Gutmans | 2001-11-25 | 1 | -0/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <? class foo { class bar { function init_values() { for ($i=1; $i<10; $i++) { foo::bar::$hello[$i] = $i*$i; } } function print_values() { for ($i=1; $i<10; $i++) { print foo::bar::$hello[$i] . "\n"; } } } } foo::bar::init_values(); foo::bar::print_values(); for ($i=1; $i<10; $i++) { print $hello[$i]?"Shouldn't be printed\n":""; } ?> | |||||
* | - Fix internal classes | Andi Gutmans | 2001-10-29 | 1 | -1/+1 | |
| | ||||||
* | MFHZ1 | Andrei Zmievski | 2001-10-20 | 1 | -4/+4 | |
| | ||||||
* | MFZE1: Introduced extension version numbers (Stig) | Sebastian Bergmann | 2001-10-12 | 1 | -0/+11 | |
| | ||||||
* | - Merge Andrei's fix from Engine 1. Please commit patches to both trees! | Andi Gutmans | 2001-08-26 | 1 | -1/+1 | |
| | ||||||
* | MFZE1 | Zeev Suraski | 2001-08-13 | 1 | -2/+2 | |
| | ||||||
* | - More work on making objects work | Andi Gutmans | 2001-08-11 | 1 | -3/+12 | |
| | ||||||
* | - Fix some places which create objects. The fixes are ugly and will be | Andi Gutmans | 2001-08-11 | 1 | -6/+3 | |
| | | | | | revised when things start working well | |||||
* | Whitespace | Zeev Suraski | 2001-08-11 | 1 | -17/+17 | |
| | ||||||
* | - Sync Engine2 CVS with latest Engine CVS | Andi Gutmans | 2001-08-07 | 1 | -7/+10 | |
| | ||||||
* | TSRMLS_FETCH work | Zeev Suraski | 2001-08-05 | 1 | -4/+3 | |
| | ||||||
* | More TSRMLS_FETCH work | Zeev Suraski | 2001-07-31 | 1 | -11/+6 | |
| | ||||||
* | More TSRMLS_FETCH work | Zeev Suraski | 2001-07-30 | 1 | -10/+10 | |
| | ||||||
* | More TSRMLS_FETCH work | Zeev Suraski | 2001-07-30 | 1 | -3/+5 | |
| | ||||||
* | More TSRMLS_FETCH work, and get rid of redundant ParametersPassedByRef | Zeev Suraski | 2001-07-30 | 1 | -18/+0 | |
| | ||||||
* | Let's be consisten and keep TSRMLS_DC declaration after num_args. | Andrei Zmievski | 2001-07-30 | 1 | -1/+1 | |
| | ||||||
* | More TSRMLS_FETCH annihilation | Zeev Suraski | 2001-07-30 | 1 | -6/+5 | |
| | ||||||
* | Get rid of more TSRMLS_FETCH's | Zeev Suraski | 2001-07-30 | 1 | -4/+2 | |
| | ||||||
* | Avoid TSRMLS_FETCH()'s (still lots of work left) | Zeev Suraski | 2001-07-30 | 1 | -15/+15 | |
| | ||||||
* | Redesigned thread safety mechanism - nua nua | Zeev Suraski | 2001-07-28 | 1 | -5/+5 | |
| | ||||||
* | Get rid of ELS_*(), and use TSRMLS_*() instead. | Zeev Suraski | 2001-07-27 | 1 | -11/+11 | |
| | | | | | | This patch is *bound* to break some files, as I must have had typos somewhere. If you use any uncommon extension, please try to build it... | |||||
* | Remove the last couple of bogus inlines | Zeev Suraski | 2001-07-11 | 1 | -5/+2 | |
| | ||||||
* | Get rid of some inlines | Zeev Suraski | 2001-07-11 | 1 | -41/+41 | |
| | ||||||
* | Adding new parameter parsing API. | Andrei Zmievski | 2001-07-09 | 1 | -0/+394 | |
| | ||||||
* | Trivial fix - but the period looks odd in error messages | Rasmus Lerdorf | 2001-07-03 | 1 | -1/+1 | |
| | ||||||
* | Nuke unused variable. | Andrei Zmievski | 2001-05-09 | 1 | -2/+0 | |
| | ||||||
* | Fix a few bugs in zend_is_callable() and make it stricter. | Andrei Zmievski | 2001-05-09 | 1 | -37/+44 | |
| | ||||||
* | - More whitespace fixes while I'm at it. | Andi Gutmans | 2001-04-27 | 1 | -1/+1 | |
| | ||||||
* | Name length is already known. | Andrei Zmievski | 2001-03-12 | 1 | -4/+3 | |
| | ||||||
* | - Missed second place. | Andi Gutmans | 2001-03-12 | 1 | -4/+12 | |
| | ||||||
* | - Nuke snprintf() | Andi Gutmans | 2001-03-12 | 1 | -2/+9 | |
| | ||||||
* | Improve zend_is_callable() to the point where it's actually useful. | Andrei Zmievski | 2001-03-12 | 1 | -11/+52 | |
| | | | | | | Now it just needs to be invoked everywhere in PHP where a callback is expected. | |||||
* | - Rename modules.h to zend_modules.h | Andi Gutmans | 2001-02-26 | 1 | -1/+1 | |
| | ||||||
* | - Update copyright year | Andi Gutmans | 2001-02-26 | 1 | -1/+1 | |
| | ||||||
* | Added zend_is_callable() function that checks whether passed zval | Andrei Zmievski | 2001-02-01 | 1 | -0/+40 | |
| | | | | | represents a valid and exiting callable construct. | |||||
* | - Change unset() functions to null(). unset() is legacy | Andi Gutmans | 2001-01-31 | 1 | -4/+4 | |
| | ||||||
* | fixed crash in add_index_bool. | Thies C. Arntzen | 2001-01-23 | 1 | -1/+1 | |
| | ||||||
* | - Patch from Sterling. Add API calls to add zval's as array indeces/ | Andi Gutmans | 2001-01-20 | 1 | -266/+188 | |
| | | | | | | object properties. Add _ex functions which take the string length as an argument for better performance. | |||||
* | - For Sterling. I wonder if not all of the API functions should take the | Andi Gutmans | 2001-01-19 | 1 | -0/+5 | |
| | | | | | - key_length as a parameter in order to save that strlen(). | |||||
* | Maintain consistency | Zeev Suraski | 2000-11-02 | 1 | -1/+1 | |
| | ||||||
* | - Fix new -m on Windows | Andi Gutmans | 2000-10-26 | 1 | -1/+1 | |
| | ||||||
* | Avoid using E_CORE_* errorlevels in any place which is not in the global ↵ | Zeev Suraski | 2000-06-12 | 1 | -7/+14 | |
| | | | | startup sequence | |||||
* | Fix zend_get_parameters() | Zeev Suraski | 2000-06-11 | 1 | -2/+1 | |
| | ||||||
* | Fix bug #4768 | Zeev Suraski | 2000-06-10 | 1 | -13/+13 | |
| | ||||||
* | - Andrei, this is for you! | Andi Gutmans | 2000-06-09 | 1 | -0/+23 | |
| | | | | | | | - Add zend_register_internal_class_ex() which allows you to specify a - parent to inherit from. You can either specify the parent directly or via - its name. | |||||
* | - Change register_internal_class to zend_register_internal_class for | Andi Gutmans | 2000-06-09 | 1 | -1/+1 | |
| | | | | | | - consistency. - Andrei: I'm still thinking about the _ex you want me to implement | |||||
* | Add newline at the end of the file (breaks at least SCO and Tru64 C compiler). | Sascha Schumann | 2000-06-06 | 1 | -2/+2 | |
| |