Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Allow get_current_key() not to return the key itself, instead of a duplicate | Zeev Suraski | 2000-12-22 | 1 | -3/+3 | |
| | ||||||
* | Hardcode strlen due to problems on SCO OpenServer 5.0.4 which defines | Sascha Schumann | 2000-12-07 | 1 | -3/+3 | |
| | | | | | strlen to __std_hdr_strlen. | |||||
* | Fix memory leak - get_current_key mallocs it's result, no need to | Stanislav Malyshev | 2000-12-07 | 1 | -1/+1 | |
| | | | | | copy it. | |||||
* | Update class constants before trying to get default properties. | Andrei Zmievski | 2000-11-27 | 1 | -0/+4 | |
| | ||||||
* | Sterling's patch to make get_defined_vars() simpler and better. | Andrei Zmievski | 2000-11-21 | 1 | -36/+4 | |
| | ||||||
* | - Fix copy&paste bug | Andi Gutmans | 2000-10-17 | 1 | -1/+1 | |
| | ||||||
* | - Add another patch from Sterling. | Andi Gutmans | 2000-10-14 | 1 | -14/+36 | |
| | ||||||
* | - Preliminary commit of Sterlings get_defined_functions()/get_defined_vars | Andi Gutmans | 2000-10-14 | 1 | -0/+76 | |
| | | | | | functions | |||||
* | - Cleanup error output | Andi Gutmans | 2000-09-30 | 1 | -1/+1 | |
| | ||||||
* | Made get_included_files() work again, in somewhat different way | Stanislav Malyshev | 2000-09-18 | 1 | -1/+8 | |
| | ||||||
* | Make compile_string() accept a description of the code | Zeev Suraski | 2000-09-12 | 1 | -1/+5 | |
| | ||||||
* | Fix memory overrun. | Andrei Zmievski | 2000-09-05 | 1 | -1/+1 | |
| | ||||||
* | Fix crash with trigger_error having no args (#6549) | Stanislav Malyshev | 2000-09-05 | 1 | -0/+2 | |
| | ||||||
* | - Don't define this function in non-debug mode | Andi Gutmans | 2000-08-26 | 1 | -1/+2 | |
| | ||||||
* | The patch we promised - redesigned the compilation/execution API: | Zeev Suraski | 2000-08-09 | 1 | -18/+1 | |
| | | | | | | | | | | | | | | | | | | Advantages: - Smaller memory footprint for the op arrays - Slightly faster compilation times (due to saved erealloc() calls and faster zend_op initialization) - include_once() & require_once() share the same file list - Consistency between include() and require() - this mostly means that return() works inside require()'d files just as it does in include() files (it used to be meaningless in require()'d files, most of the time (see below)) - Made require() consistent with itself. Before, if the argument was not a constant string, require() took the include() behavior (with return()). - Removed lots of duplicate code. Bottom line - require() and include() are very similar now; require() is simply an include() which isn't allowed to fail. Due to the erealloc() calls for large op arrays, require() didn't end up being any faster than include() in the Zend engine. | |||||
* | Make define return false and issue E_NOTICE when trying to redefine constant | Stanislav Malyshev | 2000-07-28 | 1 | -2/+6 | |
| | | | | | @- Make define return false and issue E_NOTICE when trying to redefine constant (Stas) | |||||
* | Add strncasecmp function | Stanislav Malyshev | 2000-07-26 | 1 | -0/+18 | |
| | | | | | @ Added strncasecmp function (Andi) | |||||
* | Forgot to link this function... | Zeev Suraski | 2000-07-18 | 1 | -0/+1 | |
| | ||||||
* | Improve register_resource_ex() infrastructure | Zeev Suraski | 2000-07-14 | 1 | -21/+45 | |
| | ||||||
* | error_reporting fix | Zeev Suraski | 2000-06-30 | 1 | -1/+1 | |
| | ||||||
* | - Add restore_error_handler() | Zeev Suraski | 2000-06-17 | 1 | -3/+23 | |
| | | | | | error_handler's are now stored in a stack | |||||
* | Make Egon happy :) | Zeev Suraski | 2000-06-12 | 1 | -2/+1 | |
| | ||||||
* | Return the previous error handler from set_error_handler() | Zeev Suraski | 2000-06-12 | 1 | -4/+9 | |
| | ||||||
* | Avoid using E_CORE_* errorlevels in any place which is not in the global ↵ | Zeev Suraski | 2000-06-12 | 1 | -1/+1 | |
| | | | | startup sequence | |||||
* | Fix bug #4768 | Zeev Suraski | 2000-06-10 | 1 | -2/+2 | |
| | ||||||
* | Made an alias for hash apply with arguments. | Andrei Zmievski | 2000-06-09 | 1 | -1/+1 | |
| | ||||||
* | Fixed bug #4819 | Zeev Suraski | 2000-06-09 | 1 | -3/+22 | |
| | ||||||
* | - Complete change to create_function() | Andi Gutmans | 2000-06-05 | 1 | -3/+3 | |
| | ||||||
* | Rename lambda() | Zeev Suraski | 2000-06-04 | 1 | -3/+3 | |
| | ||||||
* | Fix a lambda() bug | Zeev Suraski | 2000-06-03 | 1 | -1/+1 | |
| | ||||||
* | Add missing { | Zeev Suraski | 2000-06-03 | 1 | -1/+1 | |
| | ||||||
* | - Fix Win32 compilation (Use winsock2.h from now on) | Zeev Suraski | 2000-06-03 | 1 | -0/+56 | |
| | | | | | - Add lambda() support | |||||
* | Update error code | Zeev Suraski | 2000-06-02 | 1 | -7/+18 | |
| | ||||||
* | Added a way to get all declared classes. | Andrei Zmievski | 2000-05-01 | 1 | -2/+33 | |
| | ||||||
* | Initial support for trapping errors (not complete and disabled; will be ↵ | Zeev Suraski | 2000-04-19 | 1 | -0/+24 | |
| | | | | | | | enabled only post-PHP 4.0.0) | |||||
* | - Renamed get_used_files() to get_required_files() for consistency | Zeev Suraski | 2000-04-19 | 1 | -3/+49 | |
| | | | | | | | - Documented some functions - Added user-level warning messages - Added user_error() | |||||
* | The checks for func_num_args() and friends were broken - fixed | Zeev Suraski | 2000-03-28 | 1 | -17/+14 | |
| | ||||||
* | - Stop zend_func_args() and co. from crashing | Andi Gutmans | 2000-03-26 | 1 | -3/+16 | |
| | ||||||
* | - Some header dependencies cleanup | Zeev Suraski | 2000-03-25 | 1 | -2/+0 | |
| | | | | | - Generalize zval_print() and zval_print_r() | |||||
* | - Nuke hash_*_ptr functions | Andi Gutmans | 2000-03-24 | 1 | -1/+1 | |
| | ||||||
* | Use WRONG_PARAM_COUNT. | Andrei Zmievski | 2000-03-23 | 1 | -8/+8 | |
| | ||||||
* | - Make it compile | Zeev Suraski | 2000-03-23 | 1 | -1/+1 | |
| | ||||||
* | Added get_class_methods(). | Andrei Zmievski | 2000-03-23 | 1 | -0/+42 | |
| | ||||||
* | The third argument to define() wasn't working right, fixed | Zeev Suraski | 2000-03-18 | 1 | -1/+1 | |
| | ||||||
* | - | Zeev Suraski | 2000-03-12 | 1 | -1/+4 | |
| | ||||||
* | - Quick way of supporting include_once(). | Andi Gutmans | 2000-03-10 | 1 | -4/+4 | |
| | | | | | Good enough for RC1. | |||||
* | It's official now... | Zeev Suraski | 2000-03-06 | 1 | -3/+3 | |
| | ||||||
* | Fixed some protos. | Egon Schmid | 2000-02-27 | 1 | -8/+4 | |
| | ||||||
* | compilation error - Win32 | Sam Ruby | 2000-02-26 | 1 | -0/+1 | |
| | ||||||
* | Added get_class_vars() and get_object_vars() functions. | Andrei Zmievski | 2000-02-26 | 1 | -0/+53 | |
| |