History log of /PHP-5.5/Zend/zend_builtin_functions.c (Results 326 – 350 of 462)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 8a02b430 24-Aug-2002 Andi Gutmans

- Whitespace and better variable name


# 800c67a1 24-Aug-2002 Thies C. Arntzen

fix warning


Revision tags: php-4.2.3RC1
# eea1a0b2 23-Aug-2002 Thies C. Arntzen

debug_backtrace: show include/require/eval as normal functions on the stack
# the hard bit is to find out the args for those


# 8feda5cb 23-Aug-2002 Derick Rethans

- No spaces :)


# 28080918 23-Aug-2002 Thies C. Arntzen

- debug_backtrace now also returns an array containing the arguments of the
called function.

zeev, andi - is knowing the structure of the stack considered a bad thing in
zend_built

- debug_backtrace now also returns an array containing the arguments of the
called function.

zeev, andi - is knowing the structure of the stack considered a bad thing in
zend_builtin_function? if yes i would have to create a new function in
zend_ptr_stack.c (but i think we are save this way)

show more ...


# 7ed2d363 23-Aug-2002 Thies C. Arntzen

- debug_backtrace:
added "type" ('->' or '::') for object calls.
made calls done thru call_user_func show-up correct in backtraces.

andi,
does this look correct t

- debug_backtrace:
added "type" ('->' or '::') for object calls.
made calls done thru call_user_func show-up correct in backtraces.

andi,
does this look correct to you?

show more ...


# 04788f95 16-Aug-2002 Stig Bakken

@- Added set_exception_handler() function for registering a global,
@ catch-all exception handling function (Stig)
- Added set_exception_handler() function for registering a global,
ca

@- Added set_exception_handler() function for registering a global,
@ catch-all exception handling function (Stig)
- Added set_exception_handler() function for registering a global,
catch-all exception handling function (Stig)

show more ...


Revision tags: dev
# 41e3f4f0 26-Jul-2002 Andi Gutmans

- Fix problem with debug_backtrace() reported by Stig. We weren't reporting
- global function information because it wasn't available. We have to do
- an additional assignment per-function ca

- Fix problem with debug_backtrace() reported by Stig. We weren't reporting
- 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.

show more ...


Revision tags: php-4.2.2, INITIAL_IMPORT_SOURCEFORGE, xmlrpc_epi_0_51_merge_pt
# eebae9f9 05-Jul-2002 Stig Bakken

* folding fixes


Revision tags: php-4.3.0dev_zend2_alpha2
# 28247f57 26-Jun-2002 Andi Gutmans

- Centralize global class fetch


Revision tags: php-4.3.0dev, php5_5_0
# b4a76acf 11-Jun-2002 Andi Gutmans

- Don't show debug_backtrace() in the trace itself.
- This patch is a bit ugly because the whole code itself is pretty complex
- and hard to re-order.


# 3738a6ed 09-Jun-2002 Harald Radi

only check for an available class entry instead of
the std_object_handlers on some places

#some linuxtag work


Revision tags: RELEASE_0_90, php-4.3.0dev_zend2_alpha1, BEFORE_OBJECTS_STORE, SAFEGUARD_3_0_BETA1_RC1_26062002, RELEASE_0_11, NEW_UI_API_BP, RELEASE_0_10, RELEASE_0_4, php-4.3.0dev-ZendEngine2, php-4.3.0dev-ZendEngine2-Preview1
# 4f77354c 13-May-2002 Derick Rethans

- MFZE1


Revision tags: php-4.2.1
# dc0bc979 10-May-2002 Andi Gutmans

- Nuke C++ comment


# b6219a0d 10-May-2002 Andi Gutmans

- Make debug_backtrace() return an array. Still not finished because I
might want to differentiate between method calls and static methods.

Example:
$bt = debug_backtrace();
fore

- Make debug_backtrace() return an array. Still not finished because I
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";
}

show more ...


# 14a81f91 08-May-2002 Andi Gutmans

- Hopefully fix problems with debug_backtrace()


# b43ba8df 08-May-2002 Derick Rethans

- MFZE1


# b66c89c4 07-May-2002 Andi Gutmans

- More debug backtrace work. It still doesn't work very well...


Revision tags: php-4.2.1RC2
# 7e5ec2d7 02-May-2002 Andi Gutmans

Initial support for built-in backtracing.
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

Initial support for built-in backtracing.
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.

show more ...


Revision tags: php-4.2.1RC1
# 7a067547 30-Apr-2002 Stanislav Malyshev

Make OBJCE return zend_class_entry*, also some cleanups


# 51e797f1 23-Apr-2002 Harald Radi

some type cleanup work


# 6ac6cb10 22-Apr-2002 Harald Radi

added get_class_entry callback handler to the
object handlers structure


Revision tags: php-4.2.0, php-4.2.0RC4, php-4.2.0RC3, php-4.2.0RC2, php-4.2.0RC1, help
# 92dd5e61 12-Mar-2002 Stanislav Malyshev

- make class tables contain class_entry *, not class_entry
- fix isset($this)


# 1f9464e3 02-Mar-2002 Derick Rethans

- MFZE1


# 0c6be867 02-Mar-2002 Derick Rethans

- MFZE1


1...<<111213141516171819