Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | This commit was manufactured by cvs2svn to create tagphp_ibase_before_split | SVN Migration | 2004-01-25 | 1 | -101/+0 |
| | | | | 'php_ibase_before_split'. | ||||
* | - Happy new year and PHP 5 for rest of the files too.. | foobar | 2004-01-08 | 1 | -1/+1 |
| | | | | | # Should the LICENSE and Zend/LICENSE dates be updated too? | ||||
* | Attempt at fixing the linkage problem in Win32 | Zeev Suraski | 2003-08-31 | 1 | -5/+5 |
| | |||||
* | ntroduce infrastructure for supplying information about arguments, | Zeev Suraski | 2003-08-03 | 1 | -4/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | including: - Whether or not to pass by ref (replaces the old arg_types, with arg_info) - Argument name (for future use, maybe introspection) - Class/Interface name (for type hints) - If a class/interface name is available, whether to allow a null instance Both user and builtin functions share the same data structures. To declare a builtin function that expects its first arg to be an instance of class 'Person', its second argument as a regular arg, and its third by reference, use: ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0) ZEND_ARG_OBJ_INFO(0, someone, Person, 1) ZEND_ARG_PASS_INFO(0) ZEND_ARG_PASS_INFO(1) ZEND_END_ARG_INFO(); and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family of macros. The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref. The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat the arguments for which there's no explicit information as pass by reference or not. The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values. | ||||
* | Add exec_finished() callback for modules - this is the last place where the | Zeev Suraski | 2003-07-30 | 1 | -3/+2 |
| | | | | | modules may touch the symbol table reliably | ||||
* | updating license information in the headers. | James Cox | 2003-06-10 | 1 | -1/+1 |
| | |||||
* | - Added some missing CVS $Id$ tags, headers and footers. | foobar | 2003-02-01 | 1 | -0/+9 |
| | |||||
* | fix wrong dereferenciation | Harald Radi | 2003-01-12 | 1 | -1/+1 |
| | |||||
* | #@!$$grml*$% | Harald Radi | 2003-01-12 | 1 | -2/+2 |
| | |||||
* | partially revert previous commit and | Harald Radi | 2003-01-12 | 1 | -2/+2 |
| | | | | | | change zend_modules.h to include a forward declaration to zend_ini_entry | ||||
* | added zend_ini_entry to zend_modules_entry as | Harald Radi | 2003-01-12 | 1 | -1/+4 |
| | | | | | discussed with zeev | ||||
* | Bump year. | Sebastian Bergmann | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | - MFZE1 | Derick Rethans | 2002-06-30 | 1 | -1/+1 |
| | |||||
* | - Nice catch by Derick. GINIT is dead. | Andi Gutmans | 2002-02-02 | 1 | -2/+0 |
| | |||||
* | Happy New Year. | Sebastian Bergmann | 2002-01-06 | 1 | -1/+1 |
| | |||||
* | Update headers. | Sebastian Bergmann | 2001-12-11 | 1 | -2/+2 |
| | |||||
* | MFZE1: Introduced extension version numbers (Stig) | Sebastian Bergmann | 2001-10-12 | 1 | -4/+10 |
| | |||||
* | - Bump it up in the right place | Andi Gutmans | 2001-09-27 | 1 | -1/+1 |
| | |||||
* | More TSRMLS_FETCH work | Zeev Suraski | 2001-07-31 | 1 | -2/+2 |
| | |||||
* | More TSRMLS_FETCH work | Zeev Suraski | 2001-07-30 | 1 | -4/+4 |
| | |||||
* | More TSRMLS_FETCH work, and get rid of redundant ParametersPassedByRef | Zeev Suraski | 2001-07-30 | 1 | -2/+1 |
| | |||||
* | Get rid of ELS_*(), and use TSRMLS_*() instead. | Zeev Suraski | 2001-07-27 | 1 | -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... | ||||
* | - Update copyright year | Andi Gutmans | 2001-02-26 | 1 | -1/+1 |
| | |||||
* | - Fix dll linkage warnings | Andi Gutmans | 2001-02-25 | 1 | -2/+2 |
| | |||||
* | - Add exports from Daniel Beulshausen | Andi Gutmans | 2001-02-24 | 1 | -4/+4 |
| | |||||
* | Set the floating-point exception mask on FreeBSD to 0 (as do other | Sascha Schumann | 2000-12-22 | 1 | -1/+1 |
| | | | | | | | FreeBSD system applications). Also bump up the module API number as the zend_hash_get_current_key change affects source and binary compatibility. | ||||
* | Update module_api_no | Zeev Suraski | 2000-12-14 | 1 | -1/+1 |
| | |||||
* | - Fix new -m on Windows | Andi Gutmans | 2000-10-26 | 1 | -1/+1 |
| | |||||
* | that too | Zeev Suraski | 2000-08-09 | 1 | -1/+1 |
| | |||||
* | Change header protection macros to conform to standard. | Sascha Schumann | 2000-07-02 | 1 | -2/+2 |
| | | | | | | | | | Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment" All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use by the implementation. | ||||
* | - Time to change it. We changed register_internal_class() -> | Andi Gutmans | 2000-06-09 | 1 | -2/+1 |
| | | | | | - zend_register_internal_class() | ||||
* | Use int | Zeev Suraski | 2000-04-01 | 1 | -2/+1 |
| | |||||
* | Have a standard entry for the globals id | Zeev Suraski | 2000-04-01 | 1 | -2/+4 |
| | |||||
* | - Another zend_uchar | Andi Gutmans | 2000-03-13 | 1 | -1/+1 |
| | |||||
* | - | Zeev Suraski | 2000-03-12 | 1 | -0/+5 |
| | |||||
* | - That broke the Win32 build | Andi Gutmans | 2000-03-10 | 1 | -1/+1 |
| | |||||
* | - Fix a bug and define an API_NO for the ZEND_MODULE_API | Andi Gutmans | 2000-03-10 | 1 | -1/+3 |
| | |||||
* | - zend_config.h is enough | Andi Gutmans | 2000-03-10 | 1 | -1/+1 |
| | |||||
* | - Save ZEND_DEBUG, ZTS, ZEND_API information | Andi Gutmans | 2000-03-10 | 1 | -1/+12 |
| | |||||
* | added GINIT_FUNC_ARGS and GINIT_FUNC_ARGS_PASSTHRU | Stig S. Bakken | 2000-03-06 | 1 | -0/+2 |
| | |||||
* | Added ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU. | Stig S. Bakken | 2000-03-06 | 1 | -0/+1 |
| | |||||
* | It's official now... | Zeev Suraski | 2000-03-06 | 1 | -3/+3 |
| | |||||
* | (c) patch | Zeev Suraski | 2000-02-19 | 1 | -1/+1 |
| | |||||
* | - Stop passing list/plist to internal functions | Zeev Suraski | 2000-02-05 | 1 | -2/+2 |
| | | | | | | - Add a typedef for the pCopyConstructor function pointer - Minor hacks | ||||
* | Destructors no longer return ints, the low level problem it was intended to ↵ | Zeev Suraski | 2000-01-17 | 1 | -1/+1 |
| | | | | solve is long gone now... | ||||
* | Remove request_started, increase thread safety | Zeev Suraski | 1999-11-26 | 1 | -2/+2 |
| | |||||
* | Add new API for resources | Zeev Suraski | 1999-09-03 | 1 | -3/+3 |
| | |||||
* | Add global startup/shutdown functions | Sascha Schumann | 1999-09-03 | 1 | -1/+5 |
| | |||||
* | 0.91 update | Zeev Suraski | 1999-07-19 | 1 | -2/+2 |
| | |||||
* | License update | Zeev Suraski | 1999-07-16 | 1 | -4/+8 |
| |