summaryrefslogtreecommitdiff
path: root/Zend/zend_builtin_functions.c
Commit message (Collapse)AuthorAgeFilesLines
* Make use optimized string loweringMarcus Boerger2003-05-211-12/+6
|
* Fixed bug #23619 (set_error_handler() registered handler not called for ↵foobar2003-05-211-5/+11
| | | | object instances). (Jani, waboring@qualys.com)
* Change get_class() so that it returns qualified names for namespacedStanislav Malyshev2003-04-211-14/+51
| | | | | | | | | | | | classes. *HEADS UP*: get_class_name() handler interface is changed, now it should allocate the space it returns with emalloc, and the users free it. If anyone has problems with it or has suggestions how to do it without this - please tell. Also: make function_exists() understand namespaces.
* refine the set_error_handler fixStanislav Malyshev2003-04-201-2/+2
|
* Fix for bug #21094 (set_error_handler can not accept methods),Stanislav Malyshev2003-04-201-2/+10
| | | | | by Timm Friebe
* Switch some functions to use new zend_lookup_ns_class() methods. ThisAndrei Zmievski2003-04-081-29/+11
| | | | | means that they will accept both simple and fully qualified class names.
* allow class_exists() to work with namespaces too.Stanislav Malyshev2003-04-021-21/+52
| | | | | add CLASS_IS_NAMESPACE macro
* fix typoStanislav Malyshev2003-04-021-1/+1
|
* fix parameterless get_declared_classes callStanislav Malyshev2003-04-021-4/+3
|
* Split ZEND_NAMESPACE into user and internal namespaces. Hope this isAndrei Zmievski2003-04-011-1/+1
| | | | | okay with engine folks.
* improve namespace name hanflingStanislav Malyshev2003-04-011-1/+1
|
* fix get_declared_classes()Stanislav Malyshev2003-04-011-0/+3
|
* make get_declared_classes() work with namespaces (based on Tal Peer's patch)Stanislav Malyshev2003-04-011-4/+34
|
* Eliminate TSRMLS_FETCH() calls in destroy_op_array() and zend_get_class_entry().Sebastian Bergmann2003-03-261-2/+2
|
* Add support for interfacesZeev Suraski2003-03-051-10/+20
|
* Fix get_parent_class()Zeev Suraski2003-02-101-10/+5
|
* zend_config.h (and its Win32 version) is already included by zend.hSebastian Bergmann2003-02-081-1/+0
|
* The string.h is already avaliable through zend.h, so the manual inclusionIlia Alshanetsky2003-02-081-6/+1
| | | | | is not necessary.
* Added a check to ensure that string.h is avaliable before trying to use it.Ilia Alshanetsky2003-02-071-0/+5
| | | | | Thanks Andi.
* Added missing header.Ilia Alshanetsky2003-02-071-0/+2
|
* Fixed bug #15734 (Added an optional parameter to get_defined_constants(),Ilia Alshanetsky2003-02-071-2/+64
| | | | | which if passed, will include information regarding who created the constant).
* Fixed bug #19506 (get_extension_funcs() can now retrieve a list of built-inIlia Alshanetsky2003-02-061-7/+11
| | | | | | Zend Engine functions, if "zend" is specified as the module name). Made get_extension_funcs() on failure.
* - Added some missing CVS $Id$ tags, headers and footers.foobar2003-02-011-0/+1
|
* ZTS fixes.Sebastian Bergmann2003-01-121-3/+3
|
* fix 'use of uninitialized variable' warningHarald Radi2003-01-121-1/+1
|
* MFZE2Ilia Alshanetsky2003-01-081-4/+6
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* - MFZE1Andi Gutmans2002-12-011-0/+139
|
* - Revert as the patch doesn't compileAndi Gutmans2002-12-011-139/+0
|
* - MFZE1Andi Gutmans2002-12-011-0/+139
|
* h WHitespaceAndi Gutmans2002-11-301-3/+3
|
* - Nuke use of deprecated macroAndi Gutmans2002-11-271-5/+5
|
* - Commit Marcus' cleanup of abstract and static inheritance and improveAndi Gutmans2002-11-231-1/+1
| | | | | - error messages
* - MFZE1: Disable leak() and crash() when not using debug modeDerick Rethans2002-11-201-1/+6
|
* MFZE1 - error_reporting fixZeev Suraski2002-11-191-3/+3
|
* MFZE1Thies C. Arntzen2002-10-211-1/+5
|
* MFZE1 zend_str_tolower issue.Ilia Alshanetsky2002-10-091-7/+7
|
* - Fix for defines...Derick Rethans2002-09-281-2/+2
|
* - Fix build in non-ZTS modeDerick Rethans2002-09-281-0/+6
|
* MFZE1Ilia Alshanetsky2002-09-261-7/+7
|
* Add useful debugging functionZeev Suraski2002-09-181-0/+8
|
* MFZE1Andrei Zmievski2002-09-161-2/+12
|
* - WS - Always use "if (" and not "if("Andi Gutmans2002-09-151-5/+5
|
* nuke warningThies C. Arntzen2002-09-031-0/+1
|
* nuke unneeded stuffThies C. Arntzen2002-09-031-1/+0
|
* - Fix typoAndi Gutmans2002-09-031-3/+3
|
* refine last patch. if the argument-stack is not consistent don't try to showThies C. Arntzen2002-09-021-5/+3
| | | | | | | | arguments. no call to zend_error is made as we might end up in an infinite recursion if called from an error_handler. so: if the arguments to functions aren't shown in debug_backtrace this is 'cause the arument stack was not consistent when debug_backtrace was called.
* debug_backtrace() now checks the complete argument-stack for consistency.Thies C. Arntzen2002-09-021-4/+18
|
* debug_backtrace()Thies C. Arntzen2002-08-281-8/+1
| | | | | - make args passed to functions called vy call_user_function available again.
* debug_backtrace():Thies C. Arntzen2002-08-281-14/+34
| | | | | | - make args work if called from the error_handler - fix refcount for args