summaryrefslogtreecommitdiff
path: root/Zend/zend_builtin_functions.c
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'dev'.devSVN Migration2002-08-061-1296/+0
|
* - Fix problem with debug_backtrace() reported by Stig. We weren't reportingAndi Gutmans2002-07-261-27/+15
| | | | | | | | - global function information because it wasn't available. We have to do - an additional assignment per-function call so that it'll be available. - Also don't define the global scope as function name _main_ but leave it - empty so that frameworks like Pear can decide what they want to do.
* * folding fixesStig Bakken2002-07-051-1/+4
|
* - Centralize global class fetchAndi Gutmans2002-06-261-3/+4
|
* - Don't show debug_backtrace() in the trace itself.Andi Gutmans2002-06-111-8/+13
| | | | | | - This patch is a bit ugly because the whole code itself is pretty complex - and hard to re-order.
* only check for an available class entry instead ofHarald Radi2002-06-091-3/+3
| | | | | | | the std_object_handlers on some places #some linuxtag work
* - MFZE1Derick Rethans2002-05-131-2/+2
|
* - Nuke C++ commentAndi Gutmans2002-05-101-1/+1
|
* - Make debug_backtrace() return an array. Still not finished because IAndi Gutmans2002-05-101-5/+25
| | | | | | | | | | | | | | | | | | | | might want to differentiate between method calls and static methods. Example: $bt = debug_backtrace(); foreach ($bt as $frame) { if (isset($frame['class'])) { print $frame['class']; print "::"; } print $frame['function']; print " ["; print $frame['file']; print ":"; print $frame['line']; print "]\n"; }
* - Hopefully fix problems with debug_backtrace()Andi Gutmans2002-05-081-1/+4
|
* - MFZE1Derick Rethans2002-05-081-0/+5
|
* - More debug backtrace work. It still doesn't work very well...Andi Gutmans2002-05-071-8/+18
|
* Initial support for built-in backtracing.Andi Gutmans2002-05-021-0/+29
| | | | | | | | There are still a few problems such as includes and calling other functions from internal functions which aren't seen (will have to think if and how to fix this). Also the main scripts filename isn't available. Need to think about that.
* Make OBJCE return zend_class_entry*, also some cleanupsStanislav Malyshev2002-04-301-12/+14
|
* some type cleanup workHarald Radi2002-04-231-1/+1
|
* added get_class_entry callback handler to theHarald Radi2002-04-221-4/+18
| | | | | object handlers structure
* - make class tables contain class_entry *, not class_entryStanislav Malyshev2002-03-121-6/+14
| | | | | - fix isset($this)
* - MFZE1Derick Rethans2002-03-021-1/+3
|
* - MFZE1Derick Rethans2002-03-021-1/+1
|
* Mega-commit: Enter the new object modelStanislav Malyshev2002-02-071-10/+43
| | | | | | | Note: only standard Zend objects are working now. This is definitely going to break custom objects like COM, Java, etc. - this will be fixed later. Also, this may break other things that access objects' internals directly.
* Revert per Andi's request. Sorry :-(Sebastian Bergmann2002-02-021-1/+1
|
* Fix warning. Again :-)Sebastian Bergmann2002-02-021-1/+1
|
* - Please don't use strcmp() and friends in Zend but only the mem*Andi Gutmans2002-02-021-1/+1
| | | | | - functions. I didn't check this patch so please check that it works.
* Fix a warning.Sebastian Bergmann2002-02-021-1/+1
|
* MFZE1: is_a()Sebastian Bergmann2002-02-011-11/+30
|
* Happy New Year.Sebastian Bergmann2002-01-061-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* - Damn Zeev :)Andi Gutmans2001-12-041-2/+49
|
* WhitespaceZeev Suraski2001-08-111-7/+7
|
* TSRMLS fixesZeev Suraski2001-08-021-2/+2
|
* More TSRMLS_FETCH workZeev Suraski2001-07-311-5/+5
|
* More TSRMLS_FETCH workZeev Suraski2001-07-301-1/+1
|
* More TSRMLS_FETCH work, and get rid of redundant ParametersPassedByRefZeev Suraski2001-07-301-2/+1
|
* More TSRMLS_FETCH annihilationZeev Suraski2001-07-301-1/+1
|
* Avoid TSRMLS_FETCH()'s (still lots of work left)Zeev Suraski2001-07-301-3/+3
|
* - Use the Z_OBJ* macros for accessing objectsAndi Gutmans2001-07-281-5/+9
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-2/+1
|
* Get rid of ELS_*(), and use TSRMLS_*() instead.Zeev Suraski2001-07-271-2/+2
| | | | | | 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...
* - Fix crash bug (fix by Jani).Andi Gutmans2001-06-261-1/+5
|
* Fix segfault -- need to copy-construct constant value.Andrei Zmievski2001-05-231-1/+7
|
* Moving some functions into Zend.Andrei Zmievski2001-05-211-0/+97
|
* - Add mistakenly removen closing bracketAndi Gutmans2001-04-301-0/+1
|
* - Get rid of warningAndi Gutmans2001-04-301-24/+1
|
* - More whitespace fixes while I'm at it.Andi Gutmans2001-04-271-1/+1
|
* - Whitespace changes to be standard like the rest of ZendAndi Gutmans2001-04-271-2/+2
|
* Updated get_class_methods() to take class instance as well as class name.Andrei Zmievski2001-03-261-30/+26
|
* Making it possible to pass a class name to get_parent_class() as wellAndrei Zmievski2001-03-261-4/+15
| | | | | as a class instance.
* Fixing function name length.Andrei Zmievski2001-03-231-2/+2
|
* - Update copyright yearAndi Gutmans2001-02-261-1/+1
|
* - Add exports from Daniel BeulshausenAndi Gutmans2001-02-241-4/+4
|