#
8324d219 |
| 27-Feb-2005 |
Marcus Boerger |
- Update method_exists to new handlers and allow first parameter as string
|
Revision tags: RELEASE_0_2_4, RELEASE_0_2_3, RELEASE_0_2_2, RELEASE_0_2_1, RELEASE_0_2 |
|
#
1088e28d |
| 01-Feb-2005 |
Stanislav Malyshev |
Fix debug_trace with eval (patch from Antony Dovgal)
|
#
6b1f0709 |
| 27-Dec-2004 |
Zeev Suraski |
MFB
|
Revision tags: php-5.0.3, php-4.3.10, SQLITE_4_3_20041227, php-5.0.3RC2, php-4.3.10RC2, php-5.0.3RC1, php-4.3.10RC1 |
|
#
6a16f3eb |
| 26-Oct-2004 |
Andi Gutmans |
- Patch from Andrey Hristov: I have cooked a small patch which allows is_subclass_of() the accept not only an object as first parameter but a string as well. When string is passed the fun
- Patch from Andrey Hristov: I have cooked a small patch which allows is_subclass_of() the accept not only an object as first parameter but a string as well. When string is passed the function checks whether the class specified is subclass of the second parameter class a{} class b{} extends a{} is_subclass_of("a", "a") //false is_subclass_of("b", "a") //true currently only objects are allowed as first parameter
show more ...
|
Revision tags: PRE_NEW_VM_GEN_PATCH |
|
#
b52ab41c |
| 14-Oct-2004 |
Marcus Boerger |
- Allow to omit object/classname in get_parent_class() which makes it compatible with the signature and behavior of get_class()
|
#
0c40e2a0 |
| 12-Oct-2004 |
Marcus Boerger |
Bug #30381 Strange results with get_class_vars()
|
#
a4c38750 |
| 12-Oct-2004 |
Marcus Boerger |
- Fix visibility in get_class_vars() and get_class_methods() # Still there is a problem/error in the executor, i'll have a look
|
#
0f9b3de2 |
| 12-Oct-2004 |
Marcus Boerger |
- Fix set_exception_handler # unsettign with '' never worked so we use NULL now which is much better # because it matches the the return NULL in case no handler was defined # and can't le
- Fix set_exception_handler # unsettign with '' never worked so we use NULL now which is much better # because it matches the the return NULL in case no handler was defined # and can't lead to problems with wrong string operations.
show more ...
|
#
4b395a16 |
| 04-Oct-2004 |
Marcus Boerger |
- Bugfix #27798
|
#
4bcd1552 |
| 27-Sep-2004 |
Marcus Boerger |
- Fix warnings
|
Revision tags: php-5.0.2, php-4.3.9, php-5.0.2RC1, php-4.3.9RC3 |
|
#
96ab56e1 |
| 09-Sep-2004 |
Andi Gutmans |
- Roll back VM commit
|
#
2e286e73 |
| 08-Sep-2004 |
Andi Gutmans |
- Fix bug #28054 by preventing printing out bogus information in backtrace when in error handler (still doesn't know all information but at least it's not bogus)
|
Revision tags: PRE_ZEND_VM_DISPATCH_PATCH, php-4.3.9RC2 |
|
#
709c5bd2 |
| 25-Aug-2004 |
Andi Gutmans |
- Add interface_exists() and differentiate between classes and interfaces (Andrey Hristov)
|
Revision tags: php-5.0.1, php-5.0.1RC2, php-4.3.9RC1, php-5.0.1RC1 |
|
#
b1c45f61 |
| 05-Aug-2004 |
Ilia Alshanetsky |
Eliminate unneeded variable.
|
#
7bfc91c3 |
| 03-Aug-2004 |
Marcus Boerger |
- Fixed Bug #29505 get_class_vars() severely broken when used with arrays
|
#
03e298ec |
| 27-Jul-2004 |
Wez Furlong |
Fix two possible crashes. Latter is unlikely unless you are doing scary things, but former looks nasty.
|
#
d4236163 |
| 21-Jul-2004 |
Edin Kadribasic |
Fixed build
|
#
08fa8849 |
| 21-Jul-2004 |
Marcus Boerger |
- Fixded #29291: get_class_vars() return names with NULLs
|
Revision tags: RELEASE_0_1, php-5.0.0RC4, php-5.0.0, php-4.3.8 |
|
#
6d182a84 |
| 18-Jun-2004 |
George Schlossnagle |
fix for 28213. class_name and call_type should be reinitialized on every loop iter.
|
#
96a8b638 |
| 17-Jun-2004 |
Sara Golemon |
String length in parse_parameters should be int
|
Revision tags: php-5.0.0RC3, php-5.0.0RC3RC2, php-4.3.7 |
|
#
877ecb3c |
| 28-May-2004 |
Derick Rethans |
- Make the default mask for user defined error handlers include ALL errors, including E_STRICT.
|
Revision tags: php-5.0.0RC3RC1, php-4.3.7RC1 |
|
#
ef987864 |
| 23-May-2004 |
Andi Gutmans |
- Fix the following script (it crashed): <?php class ErrorHandler { function __construct() { set_error_handler(array(&$this, 'handle')); } functi
- Fix the following script (it crashed): <?php class ErrorHandler { function __construct() { set_error_handler(array(&$this, 'handle')); } function __destruct() { restore_error_handler(); } function handle($code, $msg, $file, $line, $locals) { } } new ErrorHandler(); ?>
show more ...
|
Revision tags: RELEASE_0_1_1 |
|
#
953a0996 |
| 27-Apr-2004 |
Marcus Boerger |
- Optional parameter to class_exists() that can be used to bypass __autoload() which can be helpfull in __autoload() itself.
|
#
5fff6fa3 |
| 25-Apr-2004 |
Marcus Boerger |
Skip correct amount of stack entries
|
Revision tags: php-5.0.0RC2, php-5.0.0RC2RC2, php-4.3.6, php-5.0.0RC2RC1 |
|
#
2310acb5 |
| 13-Apr-2004 |
Zeev Suraski |
Fix debug_backtrace to show arguments again We need to merge code from debug_backtrace & debug_print_backtrace at some point!
|